:root {
    --gold: #C9A000;
    --sunflower: #FFF4B1;
    --beige: #F5F5DC;
    --white: #ffffff;
    --white2: #F5F5F5;
    --text-dark: #333333;
    --light-gold: #E6C200;
    --soft-beige: #F0EDE3;
    --cream: #FFFAF0;
}

* {
    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 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white2);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 85px;
}

.logo img {
    height: 100px;
    width: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 50px;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 25px;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Menu mobile */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Welcome Hero Section */
.welcome-hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--gold), var(--sunflower));
    color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    padding-right: 30%;
}

.hero-content {
    text-align: left;
    max-width: 50%;
    margin: 0;
}

.hero-content h1 {
    font-family: "Arial Black", sans-serif;
    font-weight: 900;
    font-size: 9rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.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;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    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(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* Sections */
section {
    padding: 100px 0;
}

section:nth-child(even) {
    background-color: var(--beige);
}

/* Títulos de seção gerais */
.section-title {
    text-align: center;
    font-size: 5rem;
    margin-bottom: 30px;
    color: var(--gold);
    margin-left: 20px;
}

/* About Section */
.about-content {
    max-width: 100%;
    margin: 0 0 0 20px;
    text-align: left;
}

.about-content p {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.about-content h3 {
    color: var(--gold);
    font-size: 5rem;
    text-align: center;
    margin: 40px 0 20px;
}

/* MVV Section */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 100%;
    margin-left: 20px;
}

.mvv-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
}

.mvv-card h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mvv-card p {
    font-size: 1.5rem;
    line-height: 1.8;
}

.values-list {
    list-style: none;
    text-align: left;
}

.values-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--beige);
    font-size: 1.5rem;
}

.values-list li:last-child {
    border-bottom: none;
}

/* Services and Pains Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 70%;
    margin-left: 170px;
}

.pains .services-grid {
    max-width: 70%;
    margin-left: 170px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: 
        all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background-color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: auto;
    min-height: 150px;
    max-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: var(--gold);
    min-height: auto;
    max-height: 600px;
}

.service-card:hover h3 {
    color: var(--white);
}

.service-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 
        max-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
        opacity 0.8s ease-in-out;
    padding: 0 10px;
    font-size: 1.2rem;
    color: var(--white);
    width: 100%;
}

.service-card:hover .service-details {
    max-height: 500px;
    opacity: 1;
    padding: 20px 10px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details li {
    margin: 10px 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Guarantees Section */
.guarantees-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
    max-width: 100%;
}

.guarantee-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: 250px;
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.guarantee-card:hover {
    transform: translateY(-5px);
}

.guarantee-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 2rem;
}

.guarantee-card p {
    font-size: 1.4rem;
    line-height: 1.8;
}

.how-we-guarantee {
    max-width: 100%;
    text-align: left;
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
}

.how-we-guarantee h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.how-we-guarantee p {
    font-size: 1.5rem;
    line-height: 1.8;
}

/* Team/CEO Section */
.team .container {
    max-width: 1600px;
    margin: 0 auto;
}

.ceo-container {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 100px;
}

.ceo-container.reverse {
    flex-direction: row-reverse;
}


.ceo-photo img {
    width: 350px;
    height: 100%;
    object-fit: cover;
}

#pedro img {
    width: 400px;
    height: 100%;
    object-fit: cover;
}

.ceo-info {
    flex: 1;
}

.ceo-info h3 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--gold);
    font-weight: bold;
}

.ceo-info > p {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gold);
    font-weight: 500;
}

.ceo-text p {
    color: var(--text-dark);
    font-size: 1.5rem;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.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: 5px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--sunflower);
}


#status-message {
    margin-top: 15px;
    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;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 7rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    .services-grid, .pains .services-grid {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .hero-content {
        max-width: 70%;
    }
    
    .welcome-hero {
        padding-right: 10%;
    }
    
    .section-title {
        font-size: 3.5rem;
        margin-left: 0;
    }
    
    .about-content {
        margin: 0;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        margin-left: 0;
    }
    
    .ceo-text p {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .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: 150px;
        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: 20px 0;
        font-size: 20px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .welcome-hero {
        padding-right: 0;
        justify-content: center;
    }
    
    .ceo-container, .ceo-container.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .ceo-photo {
        margin: 0 auto 20px;
    }
    
    .ceo-text p {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .ceo-info h3 {
        font-size: 2.5rem;
    }
    
    .ceo-info > p {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .services-grid, .pains .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-left: 0;
    }

    .service-card.expanded {
        min-height: auto;
        max-height: 600px;
        background-color: var(--gold);
    }

    .service-card.expanded h3 {
        color: var(--white);
    }

    .service-card.expanded .service-details {
        max-height: 500px;
        opacity: 1;
        padding: 20px 10px;
    }

    
    .about-content p {
        font-size: 1.2rem;
    }
    
    .about-content h3 {
        font-size: 3rem;
    }
    
    .mvv-card, .mvv-card p, .values-list li {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 70px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .ceo-text p {
        font-size: 1.5rem;
    }
    
    .guarantee-card {
        width: 100%;
        flex: 0 0 100%;
        height: auto;
        min-height: 200px;
        padding: 30px 20px;
    }
    
    .guarantee-card h3 {
        font-size: 1.5rem;
    }
    
    .how-we-guarantee p {
        font-size: 1.2rem;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .submit-button {
        font-size: 1.2rem;
    }
}