/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    background-color: #faf8f5;
    line-height: 1.6;
}

a {
    color: #e07856;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff1ee;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: #333;
}

.site-logo {
    width: 40px;
    height: 40px;
    background-color: #e07856;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 4px;
    cursor: pointer;
}

.site-logo img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    transition: transform 0.6s ease;
    will-change: transform;
}

.site-logo:hover img,
.site-logo:focus-within img,
.site-logor:active img {
    transform: rotate(360deg);
}

.site-nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .site-nav {
        display: flex;
    }
}

.site-nav a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-nav a:hover {
    color: #e07856;
}

.header-cta {
    background-color: #e07856;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    display: inline-block;
    text-decoration: none;
}

.header-cta:hover {
    background-color: #d97c6a;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, #fef3e6, white);
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 5rem 0;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.hero-text h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

.hero-text h1 .highlight {
    color: #e07856;
}

.hero-text p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: #e07856;
    color: white;
}

.btn-primary:hover {
    background-color: #d97c6a;
}

.btn-secondary {
    background-color: transparent;
    color: #e07856;
    border: 2px solid #e07856;
}

.btn-secondary:hover {
    background-color: rgba(224, 120, 86, 0.1);
}

.btn,
a.btn {
    display: inline-block;
    text-decoration: none;
}

.hero-image {
    display: block;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    max-width: 400px;
    /* Limita largura no mobile para não ocupar tela toda */
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-image {
        margin-top: 0;
        max-width: none;
        /* Remove limitação no desktop */
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Christmas Effects */
.christmas-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding-top: 5px;
    z-index: 10;
}

.light-bulb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    animation: blink 1.5s infinite alternate;
}

.light-bulb:nth-child(1) {
    background-color: #ff0000;
    animation-delay: 0s;
}

.light-bulb:nth-child(2) {
    background-color: #00ff00;
    animation-delay: 0.2s;
}

.light-bulb:nth-child(3) {
    background-color: #0000ff;
    animation-delay: 0.4s;
}

.light-bulb:nth-child(4) {
    background-color: #ffff00;
    animation-delay: 0.6s;
}

.light-bulb:nth-child(5) {
    background-color: orange;
    animation-delay: 0.8s;
}

.light-bulb:nth-child(6) {
    background-color: #ff00ff;
    animation-delay: 1.0s;
}

.light-bulb:nth-child(7) {
    background-color: green;
    animation-delay: 1.0s;
}

.light-bulb:nth-child(8) {
    background-color: lightcoral;
    animation-delay: 1.0s;
}

.light-bulb:nth-child(9) {
    background-color: red;
    animation-delay: 1.0s;
}

.light-bulb:nth-child(10) {
    background-color: blue;
    animation-delay: 1.0s;
}

.snowflake {
    position: absolute;
    top: -10px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
    animation: fall linear infinite;
}

@keyframes blink {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 15px currentColor;
    }
}

@keyframes fall {
    0% {
        transform: translateY(0) translateX(0);
    }

    100% {
        transform: translateY(500px) translateX(20px);
    }
}

.firework-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 20;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 6rem 0;
    }
}

.section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

/* What We Do Section */
.what-we-do {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card.card-blue {
    background-color: #b8ddd8;
}

.service-card.card-coral {
    background-color: #d97c6a;
}

.service-card.card-peach {
    background-color: #e8b89e;
}

.service-card.card-purple {
    background-color: #c9b5d8;
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Icons as images (useful when replacing emoji with PNG/SVG) */
.service-card .icon img,
.service-card-large .icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    margin: 0 auto 0.75rem;
}

/* Layout variant: texto acima e ícone abaixo alinhado à direita */
.service-card.layout-text-top {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card.layout-text-top .icon {
    order: 2;
    /* move o ícone para depois do texto */
    align-self: flex-end;
    /* alinha o ícone à direita */
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 2.25rem;
    /* caso o ícone seja emoji */
}

.service-card.layout-text-top .icon img {
    display: block;
    width: 156px;
    height: 156px;
    object-fit: contain;
}


.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.service-card p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.95rem;
}

/* Our Services Section */
.our-services {
    background-color: #f9f5f0;
}

.services-2col-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.service-card-large {
    padding: 2rem;
    border-radius: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .service-card-large {
        padding: 1rem;
    }
}

.service-card-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card-large.card-blue {
    background-color: #b8ddd8;
}

.service-card-large.card-coral {
    background-color: #d97c6a;
}

.service-card-large.card-peach {
    background-color: #e8b89e;
}

.service-card-large.card-purple {
    background-color: #c9b5d8;
}

.service-card-large .icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.service-card-large h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.service-card-large p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.95rem;
}

/* Testimonials Section - Google Reviews Style */
.testimonials {
    background-color: white;
}

.testimonials .section-title {
    text-align: center;
}

/* Carousel Container */
.reviews-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.reviews-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.reviews-container.dragging {
    scroll-behavior: auto;
}

.review-card {
    background-color: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 100%;
    max-width: 500px;
}

.review-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #e07856;
}

.review-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.review-meta {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.3;
}

.review-meta .review-count {
    display: block;
    font-weight: 500;
    color: #666;
}

.review-meta .review-date {
    display: block;
    font-size: 0.75rem;
}

.review-stars {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.star {
    color: #fbbf24;
}

.review-text {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

/* Carousel Indicators (Dots) */
.carousel-indicators {
    /* display: none; */
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0 1rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background-color: #e07856;
    width: 24px;
    border-radius: 4px;
}

.carousel-dot:hover {
    background-color: #d97c6a;
}

.reviews-wrapper {
    position: relative;
    padding: 0 1rem;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    color: #e07856;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: #e07856;
    color: white;
    box-shadow: 0 6px 12px rgba(224, 120, 86, 0.25);
    border-color: #e07856;
}

.nav-btn svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 1024px) {
    .nav-btn {
        display: flex;
    }

    .prev-btn {
        left: 50%;
        margin-left: -500px;
    }

    .next-btn {
        right: 50%;
        margin-right: -500px;
    }
}

/* Medic Plans Section */
.medic-plans {
    background-color: white;
}

.plans-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.plan-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: #fff9f6;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 240px;
    height: 140px;
    border: 1px solid #fcece8;
}

.plan-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(224, 120, 86, 0.15);
    border-color: rgba(224, 120, 86, 0.3);
    background-color: #fff;
}

.plan-logo img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.plan-logo:hover img {
    filter: grayscale(100%) sepia(80%) hue-rotate(-20deg) brightness(1.05) contrast(1.1) saturate(450%);
    /*filter: grayscale(0%);*/
    opacity: 1;
    transform: scale(1.05);
}

/* About Us Section */
.about-us {
    background-color: #f9f9f9;
}

.about-us p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-us strong {
    color: #e07856;
    font-weight: 700;
}

.about-us ul {
    list-style: none;
    padding-left: 1.5rem;
}

.about-us ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #555;
    font-size: 1rem;
}

.about-us ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e07856;
    font-weight: 700;
}

/* Exit Intent Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.exit-modal {
    background: #e07856;
    color: #fff;
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    text-align: center;
    position: relative;
}

.exit-modal .logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    padding: 6px;
    background: rgba(255, 255, 255, 0);
    box-sizing: border-box;
    padding-right: 0px;
    padding-left: 0px;
}

.exit-modal h3 {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
}

.exit-modal p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.4;
}

.modal-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-modal {
    padding: 0.6rem 1rem;
    border-radius: 0.6rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-instagram {
    background: white;
    color: #e07856;
}

.btn-agendar {
    background: #fff1ea;
    color: #e07856;
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
}


/* Location Section */
.location-section {
    background-color: #f9f5f0;
}

.location-section .section-title {
    text-align: center;
}

.map-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.map-frame {
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: 1rem;
    overflow: hidden;
}

.map-frame iframe {
    width: 100%;
    height: auto;
    min-height: 400px;
    display: block;
    border: none;
}

/* Borda em rabisco de criança - usando outline e sombra */
.map-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid #e07856;
    border-radius: 1rem;
    pointer-events: none;
    /* Efeito de rabisco usando multiple box-shadows */
    box-shadow:
        -1px 1px 0 0 rgba(224, 120, 86, 0.3),
        1px -1px 0 0 rgba(224, 120, 86, 0.3),
        2px 2px 0 0 rgba(224, 120, 86, 0.2),
        -2px -2px 0 0 rgba(224, 120, 86, 0.2);
}

@media (max-width: 767px) {
    .map-frame iframe {
        min-height: 300px;
    }
}

/* Team Section */
.our-team {
    background-color: #f9f5f0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.team-member {
    padding: 2rem;
    border-radius: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member.member-blue {
    background-color: #b8ddd8;
}

.team-member.member-coral {
    background-color: #d97c6a;
}

.team-member.member-purple {
    background-color: #c9b5d8;
}

.team-member.member-peach {
    background-color: #e8b89e;
}

.team-member-avatar {
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    overflow: hidden;
    /* garante que o zoom fique dentro do círculo */
}

.team-member-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
    /* animação suave de zoom */
    transform-origin: center center;
}

/* Zoom quando o usuário passar o mouse, focar (acessibilidade) ou tocar */
.team-member-avatar:hover .team-member-photo,
.team-member-avatar:focus-within .team-member-photo,
.team-member-avatar:active .team-member-photo {
    transform: scale(1.20);
}

/* Zoom permanente: adicione a classe `zoomed` ao <img> para manter o zoom */
.team-member-photo.zoomed {
    transform: scale(1.40);
}

.team-member-photo.zoomed-out {
    transform: scale(0.9);
}

/* Respeitar preferência do usuário por reduzir animações */
@media (prefers-reduced-motion: reduce) {
    .team-member-photo {
        transition: none !important;
    }
}

.team-member-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: #333;
}

.team-member-info p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background-color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 2.25rem;
    }
}

.cta-section p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


.cta-buttons .icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    flex-shrink: 0;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-contact a .icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    flex-shrink: 0;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Newsletter Signup Form */
.newsletter-signup {
    margin-bottom: 1.5rem;
}

#mc_embed_signup {
    background: transparent;
    clear: left;
    font: 14px Poppins, sans-serif;
}

.mc-field-group {
    margin-bottom: 0.5rem;
}

.mc-field-group input {
    display: inline-block;
    width: calc(50% - 0.25rem);
    margin-right: 0.5rem;
    padding: 0.6rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.4rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #333;
}

.mc-field-group input::placeholder {
    color: #999;
}

/* .mc-field-group input:last-child {
            margin-right: 0;
        } */

.mc-field-group input:focus,
.mc-field-group select:focus {
    outline: none;
    border-color: #e07856;
    box-shadow: 0 0 5px rgba(224, 120, 86, 0.3);
}

.mc-field-group select {
    display: inline-block;
    width: calc(50% - 0.25rem);
    margin-right: 0.5rem;
    padding: 0.6rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.4rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #999;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mc-field-group select option {
    color: #333;
    background-color: white;
}

.mc-field-group select option:checked {
    color: #000;
    background-color: white;
}

#mce-responses {
    margin-top: 0.5rem;
}

.response {
    font-size: 0.85rem;
    line-height: 1.4;
}

#mce-error-response {
    color: #ff6b6b;
}

#mce-success-response {
    color: #51cf66;
}

.clear.foot {
    margin-top: 0.75rem;
}

#mc-embedded-subscribe {
    background-color: #e07856;
    color: white;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 0.4rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#mc-embedded-subscribe:hover {
    background-color: #d97c6a;
}

@media (max-width: 768px) {

    .mc-field-group input,
    .mc-field-group select {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .mc-field-group input:last-child,
    .mc-field-group select:last-child {
        margin-bottom: 0;
    }
}

/* Responsive */
@media (max-width: 767px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.125rem;
    }

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

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

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

.service-card,
.service-card-large,
.team-member {
    animation: fadeInUp 0.6s ease-out;
}