:root {
    --primary: #25358b;
    --primary-light: #3a4bb2;
    --accent: #ed1c24;
    --accent-hover: #c1161d;
    --bg-light: #f8faff;
    --bg-white: #ffffff;
    --text-main: #1a202c;
    --text-muted: #4a5568;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(37, 53, 139, 0.1);
    --shadow-premium: 0 10px 30px rgba(37, 53, 139, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

p {
    font-family: 'Lato', sans-serif;
    color: var(--text-muted);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Navigation --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--primary);
    /* Fundo azul marinho sólido */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

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

.nav-links a {
    text-decoration: none;
    color: white;
    /* Texto branco no fundo azul */
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

/* --- Buttons --- */
.btn-primary {
    background: var(--accent);
    color: white !important;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 28, 36, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* --- Hero --- */
.hero {
    padding: 12rem 0 8rem;
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 60% 50%, rgba(37, 53, 139, 0.04) 0%, transparent 60%);
    z-index: 0;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.4rem;
    background: rgba(37, 53, 139, 0.06);
    border: 1px solid rgba(37, 53, 139, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    margin-bottom: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.hero h1 span {
    color: var(--accent);
    font-style: italic;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 520px;
    color: var(--text-muted);
    line-height: 1.8;
}

.hero-specialties {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.specialty-tag {
    padding: 0.4rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.age-groups {
    margin-bottom: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--bg-white);
    padding: 0;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.age-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.8rem;
    gap: 0.2rem;
}

.age-icon {
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.age-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.age-range {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.age-divider {
    width: 1px;
    height: 36px;
    background: var(--glass-border);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

/* --- About Therapies --- */
.about-therapies {
    padding: 8rem 0;
    background: var(--bg-white);
}

.about-therapies h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 5rem;
}

.about-therapies-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5rem;
    align-items: center;
}

.about-therapies-image img {
    max-width: 280px;
    height: auto;
    display: block;
}

.about-therapies-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-therapies-text strong {
    color: var(--text-main);
}

/* --- Why Choose Us Section --- */
.why-us {
    padding: 6rem 0 2rem;
    background: var(--bg-light);
}

.why-us h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.why-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--text-muted);
    transition: var(--transition);
    border: 1px solid rgba(37, 53, 139, 0.08);
    /* light subtle border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 53, 139, 0.12);
    border-color: rgba(37, 53, 139, 0.15);
}

.why-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(37, 53, 139, 0.05);
    /* very light blue */
    border-radius: 50%;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
}

.why-card:hover .why-icon svg {
    color: white;
}

.why-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.why-card h3 {
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--primary);
}

.services {
    padding: 8rem 0 5rem;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    /* Espaço entre o texto e os cards */
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--bg-white);
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(37, 53, 139, 0.06);
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    /* slightly thicker so it stands out */
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 1;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 53, 139, 0.12);
    border-color: transparent;
}

.service-card .icon {
    margin: 0;
    margin-bottom: 2rem;
    display: block;
    width: 100%;
    height: 240px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover .icon {
    transform: none;
    /* Removed the hover zoom effect */
}

.service-card .icon img,
.service-card .icon svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    transition: transform 0.4s ease;
    /* Adds hover zoom animation back but restricted */
}

.service-card:hover .icon img {
    transform: scale(1.05);
    /* Adds the internal zoom without breaking the boundaries */
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 2.5rem 0.8rem 2.5rem;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 2.5rem 2.5rem 2.5rem;
}

/* --- Professional Profile --- */
.professional-profile {
    padding: 8rem 0;
    background: var(--bg-light);
    position: relative;
}

.profile-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 5rem;
    align-items: center;
}

.profile-image-wrap {
    position: relative;
}

.profile-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
}

.profile-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.profile-badge::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 0 4px rgba(37, 53, 139, 0.1);
}

.profile-badge span {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.profile-text h2 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.profile-text .subtitle {
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: 'Lato', sans-serif;
}

.profile-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.profile-quote {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    background: rgba(37, 53, 139, 0.03);
    border-left: 4px solid var(--primary);
    border-radius: 0 16px 16px 0;
}

.profile-quote p {
    font-size: 1.2rem;
    color: var(--primary);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 0;
}

/* --- Testimonials --- */
.testimonials {
    padding: 5rem 0 8rem;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(37, 53, 139, 0.06);
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.05;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 53, 139, 0.1);
    border-color: transparent;
}

.stars {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    flex: 1;
}

.author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(37, 53, 139, 0.06);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author .name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    display: block;
}

.author .role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Contact --- */
.contact {
    padding: 10rem 0;
    background: var(--bg-light);
}

.glass-premium {
    background: #f8fafc;
    box-shadow: 0 30px 120px rgba(37, 53, 139, 0.1);
    border-radius: 60px;
    padding: 5rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.contact-info h2 {
    font-size: 3.5rem;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 4rem;
}

.contact-details p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-details p svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-details p span {
    line-height: 1.6;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
}

input,
select,
textarea {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.2rem;
    color: var(--text-main);
    font-family: 'Lato', sans-serif;
    outline: none;
    transition: var(--transition);
    font-size: 1rem;
    width: 100%;
    display: block;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(37, 53, 139, 0.05);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

.form-feedback {
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    display: none;
    margin-top: 0.5rem;
}

.form-feedback.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-feedback.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* --- WhatsApp --- */
.whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
    animation: wa-pulse 2s infinite;
}

.wa-text {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    background: #128c7e;
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

/* ========== TABLET (max-width: 992px) ========== */
@media (max-width: 992px) {

    /* Header - hide menu */
    header .nav-links {
        display: none;
    }

    nav {
        justify-content: center;
    }

    /* Hero */
    .hero {
        padding: 10rem 0 5rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.3;
    }

    .hero h1 br {
        display: block;
    }

    .hero p {
        max-width: 100%;
    }

    .hero-specialties {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        min-height: 350px;
    }

    /* About Therapies */
    .about-therapies-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .about-therapies-image img {
        max-width: 200px;
        margin: 0 auto;
    }

    /* Professional Profile */
    .professional-profile {
        padding: 5rem 0;
    }

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

    .profile-image-wrap {
        max-width: 450px;
        margin: 0 auto;
    }

    .profile-text {
        text-align: center;
    }

    .profile-quote {
        text-align: left;
    }

    /* Why Us Section */
    .why-us {
        padding: 5rem 0 2rem;
    }

    .why-us h2 {
        font-size: 2.5rem;
    }

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

    /* Services */
    .services {
        padding: 6rem 0 4rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .service-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonial-card {
        text-align: center;
        align-items: center;
    }

    .author {
        justify-content: center;
    }

    .author-info {
        align-items: center;
    }

    /* Contact */
    .glass-premium {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        border-radius: 32px;
        gap: 3rem;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer-logo {
        height: 60px;
    }
}

/* ========== MOBILE (max-width: 576px) ========== */
@media (max-width: 576px) {

    .container {
        padding: 0 1.2rem;
    }

    /* Header */
    .logo img {
        height: 45px;
    }

    /* Hero */
    .hero {
        padding: 8rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.35;
        margin-top: 1rem;
    }

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

    .badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }

    .hero-specialties {
        gap: 0.4rem;
    }

    .specialty-tag {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }

    .age-groups {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        border-radius: 12px;
    }

    .age-pill {
        padding: 0.8rem 0.5rem;
        flex: 1;
    }

    .age-range {
        font-size: 0.85rem;
    }

    .age-divider {
        height: 40px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-image {
        min-height: 250px;
    }

    .hero-image img {
        border-radius: 20px;
    }

    /* About Therapies */
    .about-therapies {
        padding: 5rem 0;
    }

    .about-therapies h2 {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

    .about-therapies-image img {
        max-width: 160px;
    }

    .about-therapies-text p {
        font-size: 1rem;
    }

    /* Professional Profile */
    .professional-profile {
        padding: 4rem 0;
    }

    .profile-text h2 {
        font-size: 2.2rem;
    }

    .profile-text .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .profile-badge {
        bottom: -15px;
        right: 0;
        padding: 1rem 1.2rem;
        border-radius: 14px;
    }

    .profile-badge span {
        font-size: 0.85rem;
    }

    .profile-quote {
        padding: 1.5rem;
        border-left-width: 3px;
    }

    .profile-quote p {
        font-size: 1.05rem;
    }

    /* Why Us Section */
    .why-us {
        padding: 4rem 0 1rem;
    }

    .why-us h2 {
        font-size: 2rem;
    }

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

    .why-card {
        padding: 3rem 2rem;
    }

    /* Services */
    .services {
        padding: 5rem 0 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

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

    .service-card {
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 18px;
    }

    /* Testimonials */
    .testimonials {
        padding: 3rem 0 5rem;
    }

    .testimonial-card {
        padding: 2rem;
        border-radius: 18px;
    }

    /* Contact */
    .contact {
        padding: 5rem 0;
    }

    .glass-premium {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
        gap: 2.5rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-details {
        margin-top: 2rem;
    }

    /* Footer */
    footer {
        padding: 4rem 0 3rem;
    }

    .footer-logo {
        height: 50px;
        margin-bottom: 1.5rem;
    }

    .footer-tagline {
        font-size: 1rem !important;
    }

    .developed-by img {
        height: 22px;
    }

    /* WhatsApp */
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.6rem 1.2rem;
    }

    .wa-text {
        font-size: 0.8rem;
    }
}

/* --- Footer --- */
footer {
    padding: 6rem 0 4rem;
    background: var(--primary);
    color: white;
    text-align: center;
}

.footer-logo {
    height: 80px;
    margin-bottom: 2.5rem;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 1.15rem !important;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 2.5rem !important;
}

.footer-bottom-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom-links p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5) !important;
}

.developed-by {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.developed-by span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.developed-by img {
    height: 28px;
    opacity: 0.7;
    transition: var(--transition);
}

.developed-by img:hover {
    opacity: 1;
    transform: scale(1.05);
}