:root {
    --gold: #C9A000;
    --sunflower: #FFF4B1;
    --beige: #F5F5DC;
    --white: #ffffff;
    --white2: #F5F5F5;
    --text-dark: #333333;
    --light-gold: #E6C200;
    --soft-beige: #F0EDE3;
    --cream: #FFFAF0;
    --notice-bg: #fffbe6;
    --notice-border: #ffe58f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 100%;
    overflow-x: hidden;
}

section:nth-child(even) {
    background-color: var(--soft-beige);
}

section:nth-child(odd) {
    background-color: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navbar (diminuída) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white2);
    padding: 12px 0; /* Reduzido */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px; /* Reduzido */
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px; /* Reduzido */
    width: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 32px; /* um pouco menor */
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 20px; /* menor */
}

.nav-links a:hover {
    color: var(--gold);
}

/* Menu mobile */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Welcome Hero Section */
.welcome-hero {
    height: 90vh;
    background: linear-gradient(135deg, var(--gold), var(--sunflower));
    color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    padding-left: 40px;
}

.welcome-hero .container {
    display: block;
    padding: 0;
    max-width: none;
}

.hero-content {
    text-align: left;
    max-width: 600px;
    margin: 0;
    padding: 0;
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.2));
}

.hero-content h1 {
    font-family: "Arial Black", sans-serif;
    font-weight: 900;
    font-size: 8rem;
    margin-bottom: 18px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--white);
    color: var(--gold);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button:active {
    animation: buttonClickPulse 0.6s ease-out;
    transform: scale(0.98);
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
}

.scroll-indicator p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.bounce {
    animation: bounce 2s infinite;
    font-size: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-24px); }
    60% { transform: translateY(-12px); }
}

@keyframes rippleEffect {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Update notice */
.update-notice {
    padding: 24px 0;
    background: var(--notice-bg);
    border-top: 1px solid var(--notice-border);
    border-bottom: 1px solid var(--notice-border);
}
.update-notice p {
    text-align: center;
    font-size: 1rem;
}

/* Sections */
section {
    padding: 90px 0;
}

section:nth-child(even) {
    background-color: var(--beige);
}

/* Títulos de seção gerais */
.section-title {
    text-align: center;
    font-size: 4.5rem;
    margin-bottom: 30px;
    color: var(--gold);
    margin-left: 20px;
}

/* Subtítulo seção serviços */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #555;
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.about-content h3 {
    color: var(--gold);
    font-size: 5rem;
    text-align: center;
    margin: 40px 0 20px;
}

/* MVV Section */
.mvv-intro {
    max-width: 1000px;
    margin: 60px auto 0;
    text-align: center;
    font-size: 1.2rem;
}
.mvv-intro p {
    margin-bottom: 8px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 100%;
    margin-left: 20px;
    margin-right: 20px;
}

/* MVV cards com comportamento semelhante aos cards de serviços (interativo) */
.mvv-card {
    background: linear-gradient(135deg, var(--white) 0%, #fafaf8 100%);
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 1px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 1px 8px rgba(0, 0, 0, 0.06);
    background-color: var(--gold);
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
}

.mvv-card:hover h3 {
    color: var(--white);
}

.mvv-details { 
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.2s ease-in-out, padding 0.5s ease;
    padding: 0 10px;
    font-size: 1.1rem;
    color: var(--white);
    width: 100%;
}

.mvv-card:hover .mvv-details {
    max-height: 500px;
    opacity: 1;
    padding: 12px 10px;
}

.mvv-card h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 12px;
    transition: color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 50px;
    max-width: 100%;
    margin: 0 auto;
}

.values-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--beige);
    font-size: 1.1rem;
}
.values-list li:last-child {
    border-bottom: none;
}

.service-card h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 12px;
    transition: color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, #fafaf8 100%);
    padding: 45px 36px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 1px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 1px 8px rgba(0, 0, 0, 0.06);
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
}

.service-card:hover h3 {
    color: var(--white);
}

.service-card:hover p {
    color: var(--white);
}

.service-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.service-card:hover .service-description {
    color: var(--white);
    max-height: 150px;
    opacity: 1;
    margin-bottom: 20px;
}

/* Botão Saiba Mais */
.saiba-mais-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--gold);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.saiba-mais-btn i {
    transition: transform 0.3s ease;
}

.service-card:hover .saiba-mais-btn {
    background: var(--white);
    color: var(--gold);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.service-card:hover .saiba-mais-btn i {
    transform: translateX(4px);
}

.service-details { display: none; }

.service-details p {
    margin: 8px 0;
}

/* Full-card link wrapper */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.25s ease;
}

.card-link:hover {
    transform: scale(1.01);
}

.card-link:focus .service-card,
.card-link:focus .mvv-card {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* Detail Pages Styling */
.detail-hero {
    background: linear-gradient(180deg, var(--gold) 0%, var(--sunflower) 100%);
    color: var(--white);
    padding: 110px 0 30px;
    text-align: center;
    margin-top: 80px;
}

.detail-title {
    font-family: "Arial Black", sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.detail-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 400;
}

.detail-content {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--sunflower) 0%, var(--cream) 100%);
    min-height: calc(100vh - 280px);
}

body > .detail-hero {
    background: linear-gradient(180deg, var(--gold) 0%, var(--sunflower) 100%);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.detail-text {
    padding-right: 20px;
}

.detail-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: none;
}

.service-detail-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-block {
    padding: 32px 36px;
    background: linear-gradient(135deg, var(--white) 0%, #fafaf8 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-block:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
}

.info-block:hover h3 {
    color: var(--white);
}

.info-block:hover p {
    color: var(--white);
}

.info-block h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.info-block p {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.values-detail-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    padding: 20px;
    background: linear-gradient(135deg, var(--white) 0%, #fafaf8 100%);
    border-radius: 16px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(8px);
}

.value-item h3 {
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.value-item p {
    color: #555;
    font-size: 1rem;
}

.detail-image-placeholder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-area {
    background: transparent;
    border-radius: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    transition: all 0.3s ease;
}

.image-area img {
    max-width: 100%;
    max-height: 520px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.image-area img:hover {
    transform: scale(1.1) translateY(-8px);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

/* Botão Voltar */
.back-button {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
}

.back-button:hover {
    background: var(--light-gold);
    color: var(--white);
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.back-button i {
    transition: transform 0.3s ease;
}

.back-button:hover i {
    transform: translateX(-4px);
}

/* Contact Form */
.contact-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}
.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:active {
    animation: buttonClickPulse 0.6s ease-out;
    transform: scale(0.96);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1.05rem;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    background-color: var(--light-gold);
}

.submit-button:active {
    animation: buttonClickPulse 0.6s ease-out;
    transform: scale(0.98);
}

#status-message {
    margin-top: 12px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

#status-message.success {
    background-color: #dff0d8;
    color: #3c763d;
}

#status-message.error {
    background-color: #f2dede;
    color: #a94442;
}

/* Footer */
.footer {
    background-color: var(--gold);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

/* Animações de clique para botões */
@keyframes buttonClickPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 160, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(201, 160, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 160, 0, 0);
    }
}

/* Animação de ripple effect no clique (efeito de onda) */
.cta-button::before,
.submit-button::before,
.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-button:active::before,
.submit-button:active::before,
.whatsapp-button:active::before {
    animation: rippleEffect 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .welcome-hero {
        padding-left: 30px;
    }
    
    .hero-content {
        max-width: 520px;
    }
    
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .hero-image {
        max-width: 48%;
    }
    
    .section-title {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .welcome-hero {
        padding-left: 25px;
        height: 80vh;
    }
    
    .hero-content {
        max-width: 480px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-image {
        max-width: 40%;
        right: 2%;
    }
    
    .section-title {
        font-size: 3.5rem;
        margin-left: 0;
    }
    
    .about-content {
        margin: 0;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        margin-left: 0;
        margin-right: 0;
    }
    
    .ceo-text p {
        font-size: 2rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .detail-title {
        font-size: 2.8rem;
    }

    .detail-image-placeholder {
        order: -1;
    }

    .image-area img {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        color: var(--text-dark);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 120px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        margin: 16px 0;
        font-size: 18px;
    }
    
    .welcome-hero {
        padding-left: 20px;
        padding-right: 20px;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }

    .hero-image {
        display: none;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .detail-hero {
        padding: 70px 0 30px;
    }

    .detail-title {
        font-size: 2rem;
    }

    .detail-subtitle {
        font-size: 1rem;
    }

    .detail-content {
        padding: 40px 0;
    }

    .detail-text {
        padding-right: 0;
    }

    .content-wrapper {
        gap: 25px;
    }

    .info-block {
        padding: 20px;
    }

    .info-block h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .info-block p {
        font-size: 0.95rem;
    }

    .image-area {
        min-height: 220px;
        padding: 20px;
    }

    .image-area img {
        max-height: 250px;
    }

    .about-content p {
        font-size: 1.2rem;
    }
    
    .about-content h3 {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .welcome-hero {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .logo img {
        height: 52px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .update-notice p {
        font-size: 0.95rem;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .submit-button {
        font-size: 1.2rem;
    }
}