@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --cream: #f8e1ab;
    --gold: #8c713f;
    --dark: #282828;
    --light-gray: #f5f5f5;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    max-width: 100vw;
    padding: 0 10px;
}

a {
    color: inherit;
    text-decoration: none;
}

a:not(.btn-primary):not(.btn-secondary):not(.whatsapp-float):not(.nav-menu a) {
    color: var(--dark);
    text-decoration: none;
}

a:not(.btn-primary):not(.btn-secondary):not(.whatsapp-float):not(.nav-menu a):hover {
    color: var(--gold);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold) 0%, #a08550 100%);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 8px 25px rgba(140, 113, 63, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse-whatsapp 2.5s infinite;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(140, 113, 63, 0.5);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(140, 113, 63, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(140, 113, 63, 0.4), 0 0 0 15px rgba(140, 113, 63, 0.1);
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    backdrop-filter: none;
    z-index: 999;
    padding: 25px 0;
    transition: var(--transition);
    box-shadow: none;
}

.navbar.scrolled {
    background-color: var(--dark);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 90px;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.navbar.scrolled .logo img {
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    transition: var(--transition);
    position: relative;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.navbar.scrolled .nav-menu a {
    color: var(--white);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--cream));
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .menu-toggle span {
    background-color: var(--white);
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    width: 100vw;
    margin-left: -10px;
    margin-right: -10px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg-sessao-hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.85) 0%, rgba(40, 40, 40, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
    padding: 0 30px;
}

.hero-subtitle {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--cream);
    font-weight: 400;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.hero-content h1 {
    font-size: 72px;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 25px;
}

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--cream);
    font-weight: 400;
}

.hero-description {
    font-size: 19px;
    margin-bottom: 45px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--gold) 0%, #a08550 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(140, 113, 63, 0.3);
}

.btn-primary i {
    font-size: 20px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(140, 113, 63, 0.4);
    background: linear-gradient(135deg, #a08550 0%, var(--gold) 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--gold);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--gold);
    letter-spacing: 0.5px;
}

.btn-secondary i {
    font-size: 20px;
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140, 113, 63, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 24px;
        opacity: 0;
    }
}

.scroll-indicator p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    transition: var(--transition);
}

.stat-item i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--cream);
    letter-spacing: 0.5px;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.about-section {
    padding: 120px 0;
    background-color: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(140, 113, 63, 0.2), rgba(40, 40, 40, 0.3));
    opacity: 0;
    transition: var(--transition);
}

.about-image:hover .about-image-overlay {
    opacity: 1;
}

.about-content {
    padding: 20px 0;
}

.section-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.about-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--dark);
}

.divider-left {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--cream));
    margin-bottom: 30px;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.about-content .btn-secondary {
    margin-top: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 52px;
    color: var(--dark);
    margin-bottom: 25px;
}

.section-description {
    font-size: 17px;
    color: #555;
    max-width: 850px;
    margin: 25px auto 0;
    line-height: 1.8;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--cream));
    margin: 0 auto;
}

.areas-section {
    padding: 120px 0;
    background-color: var(--light-gray);
    background-image: url('../images/bg-patters.png');
    background-repeat: repeat;
    background-size: 400px;
    position: relative;
}

.areas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 245, 245, 0.92);
    z-index: 0;
}

.areas-section .container {
    position: relative;
    z-index: 1;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 80px;
}

.area-card {
    background-color: var(--white);
    padding: 50px 35px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(140, 113, 63, 0.1);
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.area-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), #a08550);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.area-icon i {
    font-size: 40px;
}

.area-card:hover .area-icon {
    transform: rotateY(360deg);
}

.area-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark);
}

.area-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.area-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 35px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--gold);
}

.area-card-logo:hover {
    background-color: var(--white);
    transform: translateY(-10px) scale(1.05);
}

.area-logo {
    max-width: 100%;
    height: auto;
    opacity: 0.9;
    transition: var(--transition);
}

.area-card-logo:hover .area-logo {
    opacity: 1;
}

.team-section {
    padding: 120px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.team-member {
    text-align: center;
    transition: var(--transition);
}

.team-photo {
    width: 280px;
    height: 280px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold);
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(20%);
}

.team-member:hover .team-photo {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(140, 113, 63, 0.3);
}

.team-member:hover .team-photo img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark);
}

.team-member p {
    font-size: 16px;
    color: var(--gold);
    font-weight: 500;
}

.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    color: var(--white);
    margin: 0 -10px;
}

.testimonials-section .container {
    padding: 0 30px;
}

.testimonials-section .section-header h2 {
    color: var(--white);
}

.testimonials-section .divider {
    background: linear-gradient(90deg, var(--gold), var(--cream));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 80px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 45px 35px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(140, 113, 63, 0.2);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.testimonial-quote {
    font-size: 72px;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    line-height: 1;
    margin-bottom: 25px;
    opacity: 0.3;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.testimonial-author {
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-section {
    padding: 120px 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.contact-bg-logo {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 1000px;
    height: 1000px;
    opacity: 0.015;
    z-index: 0;
    pointer-events: none;
    object-fit: contain;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    background-color: var(--white);
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold), #a08550);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
}

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.contact-form {
    background-color: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
    background-color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(140, 113, 63, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.contact-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-form .btn-primary .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.form-message {
    margin-top: 25px;
    padding: 18px;
    border-radius: 8px;
    text-align: center;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 50px 0;
    margin: 0 -10px;
}

.footer .container {
    padding: 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo img {
    height: 70px;
    filter: brightness(0) invert(1);
}

.footer-info {
    text-align: center;
    flex: 1;
}

.footer-info p {
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    body {
        font-size: 16px;
    }

    p {
        font-size: 16px;
        text-align: justify;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
    }

    .about-content p,
    .section-description,
    .area-card p,
    .testimonial-card p,
    .hero-description {
        text-align: justify;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        flex-direction: column;
        background-color: var(--dark);
        width: 100%;
        padding: 40px 30px;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        gap: 25px;
    }

    .nav-menu a {
        color: var(--white);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-bg {
        background-position: 30% center;
        background-attachment: scroll;
    }

    .hero-overlay {
        background: linear-gradient(135deg, rgba(40, 40, 40, 0.88) 0%, rgba(40, 40, 40, 0.80) 100%);
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-logo {
        max-width: 300px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-header {
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .stats-section {
        padding: 80px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-item i {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 13px;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-image {
        height: auto;
    }

    .about-image img {
        height: auto;
    }

    .areas-section {
        padding: 80px 0;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .team-section {
        padding: 80px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-photo {
        width: 220px;
        height: 220px;
    }

    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-bg-logo {
        display: none;
    }

    .contact-wrapper {
        gap: 50px;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 15px;
    }

    .logo img {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 250px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-item {
        padding: 15px 5px;
    }

    .stat-item i {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    .logo img {
        height: 70px;
    }
}
