/* CSS aprimorado para VMAlbino Contabilidade Digital */
:root {
    --primary: #000000;
    --primary-light: #222222;
    --secondary: #333333;
    --light-gray: #f9f9f9;
    --medium-gray: #e0e0e0;
    --dark-gray: #444444;
    --white: #ffffff;
    --accent: #D4AF37;
    --accent-light: #E6C566;
    --accent-gradient: linear-gradient(135deg, var(--accent) 0%, #F2D676 100%);
    --transition-speed: 0.3s;
}

body {
    background-color: var(--white);
    color: var(--secondary);
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-speed);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo span {
    color: var(--accent);
    margin-left: 2px;
}
.logo-image {
    height: 48px;
    width: auto;
    margin-right: 12px;
    transition: transform 0.3s ease;
}
nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 8px;
}

nav ul li {
    margin: 0 12px;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    position: relative;
    transition: all var(--transition-speed);
    font-size: 15px;
    padding: 10px 5px;
    display: block;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Estilo especial para Área do Cliente */
nav ul li a.client-area {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(212,175,55,0.2);
    margin-left: 10px;
}

nav ul li a.client-area:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212,175,55,0.3);
    background: linear-gradient(90deg, var(--accent-light) 0%, var(--accent) 100%);
}

nav ul li a.client-area::after {
    display: none;
}

/* Responsividade do menu */
@media (max-width: 768px) {
    nav ul {
        gap: 0;
    }
    
    nav ul li {
        margin: 0 8px;
    }
    
    nav ul li a {
        font-size: 14px;
        padding: 8px 4px;
    }
    
    nav ul li a.client-area {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* HERO SECTION */
.hero {
    background: var(--white);
    padding-top: 110px;
    padding-bottom: 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-badge {
    align-self: center;
    margin-bottom: 10px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    padding: 0;
}

.hero-content-left {
    flex: 1 1 320px;
    min-width: 320px;
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(212,175,55,0.15);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.5px;
    z-index: 10;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(212,175,55,0.25);
}

.hero-text {
    position: relative;
    text-align: left;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: left;
    max-width: 90%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-text h1 span {
    color: inherit;
    position: relative;
    display: inline-block;
}

.hero-text h1 span::after {
    display: none;
}

.hero-text p {
    font-size: 1.13rem;
    color: #363636;
    margin-bottom: 25px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    gap: 16px;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212,175,55,0.1);
    flex: 1;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border-color: rgba(212,175,55,0.2);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 6px 0;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--secondary);
    margin: 0;
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--accent);
    padding: 13px 28px;
    border-radius: 32px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(212,175,55,0.1);
    color: var(--accent);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .hero-content-left {
        max-width: 100%;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .hero-stats {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-text {
        padding: 30px 25px;
        border-radius: 12px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-text p {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 1.1rem;
    }
    
    .feature-text h3 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
    }
    
    .btn-accent, .btn-outline {
        text-align: center;
        width: 100%;
        max-width: 300px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-text {
        padding: 25px 20px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .feature-text h3 {
        text-align: center;
    }
    
    .feature-text p {
        text-align: center;
    }
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    padding: 0;
    border-radius: 0;
    display: block;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.03);
    text-align: center;
    transition: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    font-family: 'Poppins', sans-serif;
}
@media (max-width: 700px) {
    .hero-text h1 {
        font-size: 2.4rem;
        padding: 0 2px;
        line-height: 1.2;
    }
}


/* Removido estilo específico para o span, ele agora herda todas as propriedades do h1 */

.hero-text p {
    font-size: 1.13rem;
    color: #363636;
    margin: 0 0 8px 0;
    line-height: 1.7;
    font-weight: 400;
    max-width: 95%;
}
@media (max-width: 700px) {
    .hero-text p {
        font-size: 0.98rem;
    }
}

.btn.btn-accent {
    background: linear-gradient(90deg, #d4af37 60%, #b88913 100%);
    color: #fff;
    font-size: 1.08rem;
    font-weight: 600;
    padding: 14px 38px;
    border: none;
    border-radius: 32px;
    box-shadow: 0 2px 12px rgba(212,175,55,0.10);
    cursor: pointer;
    transition: background 0.23s, transform 0.18s, box-shadow 0.18s;
    letter-spacing: 0.5px;
    margin-top: 8px;
}
.btn.btn-accent:hover, .btn.btn-accent:focus {
    background: linear-gradient(90deg, #b88913 0%, #d4af37 100%);
    color: #fffbe8;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 22px rgba(212,175,55,0.15);
    outline: none;
}



.hero-text h1 span {
    color: var(--white);
    background: var(--accent-gradient);
    padding: 2px 10px;
    border-radius: 4px;
    margin-left: 3px;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(212,175,55,0.18);
    letter-spacing: 0.5px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}
.hero-text h1 span {
    color: var(--accent);
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    padding: 0 5px;
    border-radius: 4px;
}
.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 28px;
    color: var(--secondary);
}
.hero-image {
    flex: 1 1 320px;
    min-width: 320px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.executive-hero {
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(212, 175, 55, 0.1) !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: perspective(1000px) rotateY(-5deg);
    filter: contrast(1.05);
}

.executive-hero:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 15px 30px rgba(212, 175, 55, 0.15) !important;
}

.image-accent {
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
    z-index: 1;
    top: 10%;
    right: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    background: var(--white);
    border-radius: 12px;
    padding: 25px 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(212,175,55,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.10);
}

.btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed);
    background: var(--accent-gradient);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.08);
    text-decoration: none;
}
.btn:hover {
    background: var(--accent-light);
    color: var(--primary);
    transform: translateY(-2px) scale(1.02);
}

/* SEÇÃO SERVIÇOS */
.services {
    background: var(--light-gray);
    padding: 80px 0 60px 0;
}
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 38px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}
.service-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 36px 28px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid var(--medium-gray);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-card:hover {
    box-shadow: 0 12px 36px rgba(212, 175, 55, 0.13);
    border-color: var(--accent-light);
    transform: translateY(-6px) scale(1.01);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.service-card-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: 2px solid var(--accent);
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card:hover .service-card-overlay span {
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.3);
}
.service-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 14px;
}
.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 1rem;
    color: var(--secondary);
}

/* SOBRE */
.about {
    background: var(--white);
    padding: 80px 0 60px 0;
}
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.about-text {
    flex: 1 1 320px;
    min-width: 320px;
    max-width: 540px;
}
.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
}
.about-text p {
    font-size: 1.08rem;
    margin-bottom: 18px;
    color: var(--secondary);
}
.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-list li {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
}
.about-list i {
    color: var(--accent);
    margin-right: 8px;
}
.about-image {
    flex: 1 1 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 6px 12px rgba(212, 175, 55, 0.12);
    transition: all 0.4s ease;
    filter: contrast(1.05) saturate(1.05);
    border: 3px solid var(--white);
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(30px);
    z-index: 1;
    top: 10%;
    right: 10%;
    transition: all 0.5s ease;
}

.about-image:hover::before {
    opacity: 0.12;
    transform: scale(1.1);
}

.about-image img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(212, 175, 55, 0.15);
}

/* Estilos específicos para a imagem do executivo */
.executive-portrait {
    border-radius: 16px !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18), 0 8px 16px rgba(212, 175, 55, 0.15) !important;
    border: 4px solid var(--white) !important;
    filter: contrast(1.08) saturate(1.05) !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    transform: perspective(1000px) rotateY(0deg);
    position: relative;
}

.executive-portrait::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 16px;
    opacity: 0.6;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.executive-portrait:hover {
    transform: perspective(1000px) rotateY(2deg) scale(1.03) translateY(-8px) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 10px 25px rgba(212, 175, 55, 0.2) !important;
}

.executive-portrait:hover::after {
    opacity: 0.8;
}

/* CONTATO */
.contact {
    background: var(--light-gray);
    padding: 80px 0 60px 0;
}

/* SERVIÇOS */
.services {
    background: var(--white);
    padding: 80px 0 60px 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 0 0 calc(33.333% - 30px);
    max-width: 350px;
    min-width: 280px;
}

@media (max-width: 992px) {
    .service-card {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 576px) {
    .service-card {
        flex: 0 0 100%;
    }
}

/* BLOG */
.blog {
    background: var(--white);
    padding: 80px 0 60px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    max-width: 100%;
    max-height: 100%;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.blog-content {
    padding: 20px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 500;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.8em;
}

.blog-read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
    margin-top: auto;
    padding-top: 5px;
}

.blog-card:hover .blog-read-more {
    gap: 8px;
}

.blog-cta {
    text-align: center;
    margin-top: 20px;
}

.blog-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 0;
    color: var(--secondary);
}

.blog-loading i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}
.contact-info {
    flex: 1 1 320px;
    min-width: 320px;
    max-width: 540px;
}
.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}
.contact-info p {
    font-size: 1.08rem;
    margin-bottom: 18px;
    color: var(--secondary);
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-list li {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.contact-list i {
    color: var(--accent);
    margin-right: 10px;
}
.contact-form {
    flex: 1 1 240px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    min-width: 260px;
    max-width: 480px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--primary);
    font-size: 0.95rem;
    align-self: flex-start;
    width: 100%;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
    font-size: 1rem;
    background: var(--light-gray);
    color: var(--primary);
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    display: block;
    margin: 0;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
    padding-top: 16px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border: 1.5px solid var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212,175,55,0.15);
}

.contact-form select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 6px;
    margin-bottom: 28px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    margin-top: 3px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-checkbox a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .contact-form {
        padding: 28px 20px;
        max-width: 100%;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 30px;
        text-align: center;
        max-width: 100%;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form select,
    .contact-form textarea {
        padding: 16px;
        font-size: 16px; /* Evita zoom em dispositivos iOS */
    }
    
    .form-group {
        margin-bottom: 28px;
    }
}
.contact-form button {
    margin-top: 8px;
    align-self: center;
    min-width: 200px;
}

/* FOOTER */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-links-column {
    min-width: 160px;
}

.footer-links-column h4 {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 12px;
}

.footer-links-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links-column ul li a:hover {
    color: var(--accent);
}

.footer-links-column ul li i {
    color: var(--accent);
    margin-right: 8px;
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    color: var(--white);
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 40px;
    }
    
    .footer-links-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-copy {
        text-align: center;
    }
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .hero-content, .about-content, .contact-content, .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    .hero-image img, .about-image img {
        max-width: 260px;
    }
    .contact-form {
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .container {
        width: 98%;
        padding: 0 4px;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.4rem;
    }
}

/* Estilos para o header com efeito de scroll */
header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}

header.scrolled .logo-image {
    max-height: 50px;
    transition: max-height 0.3s ease;
}

/* Estilos para o menu mobile */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--accent);
}

/* Media queries para responsividade */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .desktop-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .desktop-menu.active {
        right: 0;
    }
    
    .desktop-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .desktop-menu ul li {
        width: 100%;
    }
    
    .desktop-menu ul li a {
        display: block;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid var(--medium-gray);
    }
    
    .desktop-menu ul li a.client-area {
        margin-top: 20px;
        text-align: center;
    }
}
