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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

:root {
    --sage: #91A59C;
    --sage-dark: #6B8278;
    --sage-light: #B5C4BD;
    --cream: #F7F5F2;
    --gold: #D4A574;
    --charcoal: #333333;
    --soft-gray: #888888;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-circle span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
    transition: color 0.3s ease;
}

.nav.scrolled .nav-logo-text {
    color: var(--charcoal);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav.scrolled .nav-links a {
    color: var(--charcoal);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: white;
    color: var(--sage);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    background: var(--cream);
    transform: scale(1.05);
}

.nav.scrolled .nav-cta {
    background: var(--sage);
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.nav.scrolled .nav-toggle span {
    background: var(--charcoal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(145, 165, 156, 0.8), rgba(145, 165, 156, 0.6), transparent);
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, white, transparent);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    width: 100%;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    font-style: italic;
    font-weight: 300;
}

.hero-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--sage);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.hero-btn:hover {
    background: var(--cream);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Section Common */
.section {
    padding: 6rem 2rem;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--sage);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 3rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section-title span {
    font-style: italic;
    color: var(--sage);
}

.section-text {
    color: var(--soft-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about {
    background: white;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: var(--cream);
    transform: skewX(-10deg);
    transform-origin: top right;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--sage);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.about-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--sage);
    color: white;
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(145, 165, 156, 0.4);
}

.about-badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.85rem;
    font-weight: 300;
    margin-top: 0.2rem;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    color: var(--soft-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(145, 165, 156, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-feature:hover .about-feature-icon {
    background: var(--sage);
}

.about-feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--sage);
    transition: stroke 0.3s ease;
}

.about-feature:hover .about-feature-icon svg {
    stroke: white;
}

.about-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.about-feature p {
    font-size: 0.85rem;
    margin: 0;
}

/* Services Section */
.services {
    background: var(--cream);
    position: relative;
    overflow: hidden;
    padding-bottom: 2rem !important;
}

.services::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    width: 300px;
    height: 300px;
    background: rgba(145, 165, 156, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    grid-auto-rows: 1fr;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--sage);
}

.service-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--sage);
    transition: stroke 0.3s ease;
}

.service-card:hover .service-icon svg {
    stroke: white;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

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

.service-content p {
    color: var(--soft-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--sage);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.service-link:hover {
    gap: 0.8rem;
}

/* Gallery Section */
.gallery {
    background: white;
    position: relative;
    padding-top: 0;
    margin-top: -5rem;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--cream);
    z-index: 0;
}

.gallery-slider {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-slides {
    position: relative;
    aspect-ratio: 21/9;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all 0.5s ease;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(51, 51, 51, 0.8), transparent);
    color: white;
}

.gallery-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    opacity: 0.8;
    font-weight: 300;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--charcoal);
}

.gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: var(--sage);
    transform: scale(1.05);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(145, 165, 156, 0.3);
    transition: all 0.3s ease;
}

.gallery-dot.active {
    width: 32px;
    border-radius: 4px;
    background: var(--sage);
}

/* Testimonials Section */
.testimonials {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: rgba(145, 165, 156, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 35px;
    height: 35px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.2rem;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.testimonial-text {
    color: var(--soft-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 3px rgba(145, 165, 156, 0.2);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: var(--soft-gray);
    font-size: 0.85rem;
}

/* Contact Section - Green Background */
.contact {
    background: var(--sage);
    padding: 5rem 2rem;
    position: relative;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.contact-logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-logo-circle span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--sage);
}

.contact-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: white;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-item {
    color: white;
}

.contact-item-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.contact-item-value {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
}

.contact-hours p {
    color: white;
    font-size: 1rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--charcoal);
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-icon {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-icon:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

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

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.whatsapp-btn.visible {
    opacity: 1;
    transform: scale(1);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s ease infinite;
    z-index: -1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Botão Agendar Fixo */
.agendar-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: var(--sage);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(145, 165, 156, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.agendar-btn.visible {
    opacity: 1;
    transform: scale(1);
}

.agendar-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(145, 165, 156, 0.5);
}

.agendar-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: var(--sage);
    animation: pulse 2s ease infinite;
    z-index: -1;
}

@keyframes pulse-agendar {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 800px;
    width: 98%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--charcoal);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--cream);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (min-width: 1025px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services {
        padding-bottom: 2rem !important;
    }
    
    .gallery {
        margin-top: -4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

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

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-card {
        padding: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .services {
        padding-bottom: 1.5rem !important;
    }
    
    .gallery {
        margin-top: -3rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .gallery-slides {
        aspect-ratio: 4/3;
    }

    .gallery-info {
        padding: 1.5rem;
    }

    .gallery-info h3 {
        font-size: 1.3rem;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-nav.prev {
        left: 10px;
    }

    .gallery-nav.next {
        right: 10px;
    }

    .gallery-thumbs {
        gap: 0.5rem;
    }

    .gallery-thumb {
        width: 60px;
        height: 60px;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-logo-circle {
        width: 50px;
        height: 50px;
    }

    .contact-logo-circle span {
        font-size: 1.5rem;
    }

    .contact-logo-text {
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: 0;
        border-radius: 0;
        width: 100%;
        max-height: 100vh;
        max-width: 100%;
    }
    
    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        background: rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 1.8rem;
    }

    .footer-icon {
        height: 50px;
    }

    .footer-icons {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .modal-content {
        padding: 0;
        border-radius: 0;
    }
}