@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    /* Brand Palette - requested colors */
    --clr-red: #E84C3D;
    --clr-blue: #2563eb;
    --clr-green: #25D366;
    --clr-yellow: #FFD449;
    --clr-purple: #581c87;

    /* Semantic Assignments */
    --primary: var(--clr-red);
    --primary-light: #ff6b5c;
    --secondary: var(--clr-yellow);
    --accent: var(--clr-blue);
    --success: var(--clr-green);
    --purple: var(--clr-purple);
    --purple-light: #7e22ce;
    --orange: #f26522;

    --bg-soft: #f8fafc;
    --white: #FFFFFF;
    --text-main: #0f172a;
    --text-muted: #64748B;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.1);
    --radius-lg: 2rem;
    --radius-md: 1rem;
    --radius-sm: 0.5rem;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utilities */
section {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--purple);
    font-size: 3.5rem;
    font-weight: 800;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: var(--bg-soft);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(232, 76, 61, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 40px rgba(232, 76, 61, 0.4);
}

/* Hero Button - No Hover Effect */
.btn-primary.btn-hero:hover {
    transform: none !important;
    box-shadow: 0 10px 20px rgba(232, 76, 61, 0.3) !important;
    background-color: var(--primary) !important;
    scale: 1 !important;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Text Gradient Utility from Modelo */
.text-gradient {
    background: linear-gradient(135deg, var(--clr-red) 0%, var(--clr-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Pulse Animation from Modelo */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Shimmer/Shine Effect for Buttons from Modelo */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.btn:hover::after {
    left: 150%;
    transition: left 0.8s ease;
}

/* Enhanced Shimmer for Premium Feel */
.shimmer-btn {
    position: relative;
    overflow: hidden;
}

.shimmer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.8s;
}

.shimmer-btn:hover::before {
    left: 150%;
}



.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Top Bar Premium Styles */
.top-bar {
    background-color: var(--purple);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    padding: 12px 0;
    position: relative;
    z-index: 1001;
    font-weight: 500;
    width: 100%;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar span i {
    color: #f26522;
    /* Matches Brand Orange */
    margin-right: 8px;
}

/* Navbar Premium Styles */
.navbar {
    position: fixed;
    top: 44px;
    /* Fixed under Top Bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    padding: 1rem 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 0.85rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}



.nav-container {
    display: flex;
    align-items: center;
    max-width: 1400px !important;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--purple);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: -0.02em;
}

.logo i {
    font-size: 2.2rem;
    color: var(--orange);
}

.nav-links {
    display: none;
    list-style: none;
    gap: 2.25rem;
    margin-left: auto;
    margin-right: 2.5rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--purple);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-btn-custom {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 0.8rem 2.2rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
    border: none !important;
    transition: var(--transition) !important;
}

.nav-btn-custom:hover {
    background: linear-gradient(135deg, #2ae771 0%, #15a392 100%) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}



.hero {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, #FFD449 0%, #ffdf7a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background Decorative Elements */
/* Background Decoration Removed - Solid Yellow Theme */
.hero::before {
    display: none;
}

.hero-shapes {
    display: none;
}

.shape-1 {
    position: absolute;
    top: 15%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: rgba(255, 212, 73, 0.2);
    filter: blur(50px);
    border-radius: 50%;
    animation: floatShape 8s infinite alternate;
}

.shape-2 {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: rgba(232, 76, 61, 0.1);
    filter: blur(60px);
    border-radius: 50%;
    animation: floatShape 12s infinite alternate-reverse;
}

@keyframes floatShape {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-weight: 800;
}

/* Hero Badge from Modelo */
.hero-badge {
    background: rgba(88, 28, 135, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 28, 135, 0.2);
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--purple);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 span {
    display: block;
    background: linear-gradient(90deg, var(--clr-red) 0%, var(--clr-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Rotating Text from Modelo */
.rotating-text {
    color: var(--clr-red);
    display: inline-block;
    min-width: 250px;
    font-weight: 800;
    transition: opacity 0.5s ease,
        transform 0.5s ease;
}



.hero-content p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 550px;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
    z-index: 2;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: translateY(-10px) rotate(-1deg) scale(1.02);
    filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.18));
}

/* Floating Avatars */
.pet-avatars-container {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    pointer-events: auto;
    /* Permite interação com os mini pets */
    z-index: 3;
}

.pet-avatar {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 24px;
    border: 6px solid var(--white);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.pet-avatar:hover {
    transform: scale(1.2) rotate(8deg);
    z-index: 10;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.avatar-1 {
    top: 2%;
    left: -15%;
    animation: floatIcon 4s infinite ease-in-out;
}

.avatar-2 {
    top: -20%;
    right: 10%;
    animation: floatIcon 5s infinite ease-in-out reverse;
}

.avatar-3 {
    bottom: 15%;
    left: -22%;
    animation: floatIcon 6s infinite ease-in-out 1s;
}

.avatar-4 {
    bottom: -15%;
    right: -5%;
    animation: floatIcon 4.5s infinite ease-in-out 0.5s;
}

.avatar-5 {
    top: 35%;
    right: -25%;
    animation: floatIcon 5.5s infinite ease-in-out 1.5s;
}

@media (max-width: 768px) {
    .pet-avatar {
        width: 60px;
        height: 60px;
    }

    .avatar-1 {
        left: 0;
    }

    .avatar-3 {
        left: 0;
    }

    .avatar-5 {
        right: -5%;
    }
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

.pet-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Quick Links Row */
.quick-links {
    padding: 4rem 0 2rem;
    border-bottom: 2px solid #eee;
    margin-bottom: 4rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.quick-link-icon {
    width: 120px;
    /* Increased size */
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b5c 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    /* Modern organic shape */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    /* Larger icon */
    box-shadow: 0 15px 30px rgba(232, 76, 61, 0.2);
    transition: var(--transition);
}

.quick-link-item:hover .quick-link-icon {
    transform: scale(1.1) rotate(5deg);
    border-radius: 50%;
}

.quick-link-item h3 {
    font-size: 1.1rem;
    color: var(--purple);
    font-weight: 700;
}

.quick-link-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Redesigned Services Section Premium */
.services {
    padding: 10rem 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

.service-card-modern .btn-whatsapp-modern {
    margin: auto 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

/* Redefining Pulse to use !important to override any base styles */
.pulse {
    animation: pulse-animation 2s infinite !important;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.service-card-modern {
    background: var(--white);
    padding: 0;
    /* Let header fill the top */
    border-radius: 30px;
    border: 1px solid rgba(88, 28, 135, 0.05);
    border-top: 5px solid var(--purple);
    /* Default color */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* Clips image corners */
}

.service-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(88, 28, 135, 0.08);
    border-color: var(--purple-light);
}

.service-image-header {
    width: 100%;
    height: 220px;
    /* Recalibrating height slightly */
    overflow: hidden;
    position: relative;
    background: var(--white);
    /* Blend with image background */
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-header img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Prevent cropping */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-modern:hover .service-image-header img {
    transform: scale(1.15);
}

.service-card-modern h3 {
    color: var(--purple);
    font-size: 1.6rem;
    font-weight: 800;
    margin: 1.5rem 1.5rem 0.5rem;
}

.service-card-modern p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
}

.btn-whatsapp-modern {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
    transition: var(--transition);
    margin-top: auto;
    border: none;
}

.service-card-modern .btn-whatsapp-modern {
    margin: auto 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

.btn-whatsapp-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

.btn-hero {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    padding: 1.5rem 3rem !important;
    border-radius: 100px !important;
    font-size: 1.25rem !important;
    color: var(--white) !important;
    border: none !important;
}

.btn-hero:hover {
    background: linear-gradient(135deg, #2ae771 0%, #15a392 100%) !important;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4) !important;
}

/* Cards & Sections */
.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(10deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Why Us Section */
.why-us {
    background: var(--bg-soft);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-item i {
    font-size: 2rem;
    color: var(--primary);
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
}

/* How It Works - Reference Image Style */
.how-it-works {
    padding: 10rem 0;
    background: #fff;
}

.step-subtitle-small {
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.step-title-large {
    color: var(--purple);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5rem;
}

.steps-reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.step-reference-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon-outer {
    width: 100px;
    height: 100px;
    background: rgba(232, 76, 61, 0.1);
    /* Light orange halo */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.step-number-circle {
    width: 60px;
    height: 60px;
    background: var(--clr-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(232, 76, 61, 0.3);
}

.step-reference-card:hover .step-icon-outer {
    transform: scale(1.1);
    background: rgba(232, 76, 61, 0.2);
}

.step-reference-card h4 {
    color: var(--purple);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.step-reference-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 250px;
}

@media (max-width: 768px) {
    .step-title-large {
        font-size: 2.5rem;
    }
}

/* Testimonials Redesign */
.testimonials {
    background: #f8fafc;
    padding: 8rem 0;
}

.testimonials h2 {
    color: var(--purple);
    font-size: 3rem;
    margin-bottom: 5rem;
}

.testimonial-card-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.02);
    margin-bottom: 2rem;
}

.owl-carousel .owl-stage {
    display: flex;
    /* Equal height for carousel items */
}

.owl-carousel .item {
    display: flex;
    flex-direction: column;
    height: 90%;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--text-muted);
    opacity: 0.3;
    margin-bottom: 1.5rem;
    text-align: left;
}

.testimonial-card-modern .rating-modern {
    margin-bottom: 1.5rem;
    color: #FFC107;
    /* Gold stars as per image */
    font-size: 1.4rem;
    text-shadow: none;
    -webkit-text-stroke: 0;
    outline: none;
    display: flex;
    gap: 4px;
}

.testimonial-card-modern p {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 500;
}

.testimonial-divider {
    height: 1px;
    background: #f1f5f9;
    width: 100%;
    margin-bottom: 1.5rem;
}

.tutor-footer-modern {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: auto;
}

.tutor-avatar-modern {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.tutor-avatar-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tutor-info-text b {
    display: block;
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.tutor-info-text span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Offers Section */
.offers {
    background: var(--white);
    padding: 6rem 0;
}

.offers-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: -3rem auto 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover::before {
    opacity: 1;
}

.btn-product {
    margin-top: 1.5rem;
    background: #f1f5f9;
    color: var(--text-main);
    font-size: 0.9rem;
    padding: 0.75rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.product-card:hover .btn-product {
    background: var(--purple);
    color: var(--white);
}

.product-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
}

.product-info h4 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    height: 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Added for standard compatibility */
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

.product-price {
    color: var(--success);
    font-weight: 800;
    font-size: 1.25rem;
    margin-top: auto;
    /* Pushes price and button to the bottom */
}

/* Redesigning existing sections to match the new clean look */
.why-us,
.how-it-works,
.promotion,
.about,
.contact {
    border-top: 1px solid #f1f5f9;
}

/* Promotion Section Special Effects */
.promo-premium-banner {
    background: linear-gradient(135deg, #E84C3D 0%, #ff6b5c 100%);
    border-radius: 40px;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 30px 60px rgba(232, 76, 61, 0.25);
    transition: var(--transition);
}

.promo-premium-banner:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 40px 80px rgba(232, 76, 61, 0.35);
}

/* Shine Effect */
.promo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: skewX(-20deg);
    animation: shineEffect 6s infinite ease-in-out;
}

@keyframes shineEffect {
    0% {
        left: -100%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* Floating Decorations */
.promo-decorations i {
    position: absolute;
    opacity: 0.15;
    color: var(--white);
    animation: floatAnim 8s infinite ease-in-out alternate;
}

.promo-icon-1 {
    top: 15%;
    left: 10%;
    font-size: 4rem;
}

.promo-icon-2 {
    bottom: 20%;
    right: 10%;
    font-size: 3.5rem;
    transform: rotate(15deg);
}

.promo-icon-3 {
    top: 20%;
    right: 15%;
    font-size: 2.5rem;
    animation-delay: 2s;
}

@keyframes floatAnim {
    0% {
        transform: translateY(0) rotate(0);
    }

    100% {
        transform: translateY(-30px) rotate(15deg);
    }
}

.promo-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.promo-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* High Conversion Button */
.btn-promo-yellow {
    background: var(--secondary);
    color: var(--text-main);
    padding: 1.5rem 3.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255, 212, 73, 0.4);
    transition: var(--transition);
    position: relative;
    z-index: 5;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 10px 30px rgba(255, 212, 73, 0.4);
    }

    50% {
        box-shadow: 0 10px 50px rgba(255, 212, 73, 0.6);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 10px 30px rgba(255, 212, 73, 0.4);
    }
}

.btn-promo-yellow:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

.promo-disclaimer {
    margin-top: 2rem !important;
    font-size: 0.9rem !important;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .promo-content h2 {
        font-size: 2.2rem;
    }

    .promo-content p {
        font-size: 1.1rem;
    }

    .btn-promo-yellow {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
}

/* Contact Section Premium */
.contact {
    padding: 10rem 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.contact-premium-card {
    background: var(--bg-soft);
    padding: 2.5rem;
    border-radius: 25px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.contact-premium-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(232, 76, 61, 0.1);
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--purple);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.social-modern-box {
    margin-top: 3rem;
    padding: 0 1rem;
}

.social-modern-box h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.social-links-premium {
    display: flex;
    gap: 1.25rem;
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    color: var(--white);
}

.social-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.youtube {
    background: #FF0000;
}

.social-btn:hover {
    transform: translateY(-8px) rotate(8deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.map-wrapper-premium {
    height: 100%;
    min-height: 550px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #eef2f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-muted);
}

.map-placeholder i {
    font-size: 4rem;
    color: rgba(88, 28, 135, 0.1);
}

.btn-outline-maps {
    padding: 0.75rem 2rem;
    border: 2px solid var(--purple);
    color: var(--purple);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-maps:hover {
    background: var(--purple);
    color: var(--white);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .map-wrapper-premium {
        min-height: 400px;
    }
}

/* Floating WhatsApp */
/* Removing old floating whatsapp to avoid duplicates */
.floating-whatsapp {
    display: none !important;
}

/* WhatsApp Floating Button from Modelo */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: #fff;
}

/* Animation triggers */
/* Global Icon Adjustments */
.fa-whatsapp {
    font-size: 1.5em;
    vertical-align: middle;
}

.floating-whatsapp .fa-whatsapp {
    font-size: 2.22rem;
}

.btn-whatsapp-modern .fa-whatsapp {
    font-size: 1.8rem;
}

/* About Section Premium Redesign */
.about {
    padding: 10rem 0;
    background: linear-gradient(180deg, var(--white) 0%, #fffbf5 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 76, 61, 0.05) 0%, transparent 70%);
    z-index: 0;
}

/* ========================================
   ABOUT ENHANCED SECTION - PREMIUM DESIGN
   ======================================== */
.about-enhanced {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-enhanced::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.about-enhanced::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(88, 28, 135, 0.03) 0%, transparent 70%);
    z-index: 0;
}

/* Stats Bar */
.about-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    background: var(--white);
    padding: 2.5rem 4rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    margin-left: 2px;
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(242, 101, 34, 0.1);
    color: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.stat-box:hover .stat-icon-wrapper {
    transform: translateY(-5px) rotate(10deg);
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(242, 101, 34, 0.3);
}

.stat-txt {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-stats-bar {
    position: relative;
    overflow: hidden;
}

.about-stats-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: statShine 6s infinite;
}

@keyframes statShine {
    0% {
        left: -100%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

/* Main Grid */
.about-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Visual Side */
.about-visual-side {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-bg-shape {
    position: absolute;
    width: 85%;
    height: 85%;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c42 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    opacity: 0.9;
    animation: morphShape 12s ease-in-out infinite alternate;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }

    50% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    100% {
        border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
        transform: rotate(5deg);
    }
}

.about-main-photo {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.15));
    animation: floatPhoto 6s ease-in-out infinite alternate;
}

@keyframes floatPhoto {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    top: 10%;
    left: -10%;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 5;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.floating-badge i {
    font-size: 2rem;
    color: var(--clr-green);
}

.floating-badge strong {
    display: block;
    font-size: 0.95rem;
    color: var(--purple);
}

.floating-badge span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@keyframes floatBadge {
    0% {
        transform: translateY(0) rotate(-2deg);
    }

    100% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Floating Mini Review */
.floating-mini-review {
    position: absolute;
    bottom: 15%;
    right: -5%;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    z-index: 5;
    text-align: center;
    animation: floatReviewAlt 5s ease-in-out infinite alternate-reverse;
}

.mini-stars {
    color: #FFD449;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.floating-mini-review p {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--purple);
    margin: 0;
}

@keyframes floatReviewAlt {
    0% {
        transform: translateY(0) rotate(2deg);
    }

    100% {
        transform: translateY(20px) rotate(-2deg);
    }
}

/* Content Side */
.about-content-side {
    position: relative;
    z-index: 2;
}

.about-section-title {
    color: var(--purple);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-main-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-main-title span {
    color: var(--orange);
    position: relative;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Values Grid */
.about-values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--orange);
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.value-icon.mission {
    background: rgba(88, 28, 135, 0.1);
    color: var(--purple);
}

.value-icon.vision {
    background: rgba(37, 99, 235, 0.1);
    color: var(--clr-blue);
}

.value-icon.values {
    background: rgba(232, 76, 61, 0.1);
    color: var(--clr-red);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
}

.value-card:hover .value-icon.mission {
    background: var(--purple);
    color: var(--white);
}

.value-card:hover .value-icon.vision {
    background: var(--clr-blue);
    color: var(--white);
}

.value-card:hover .value-icon.values {
    background: var(--clr-red);
    color: var(--white);
}

.value-content h4 {
    font-size: 1.15rem;
    color: var(--purple);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.value-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* CTA Button */
.btn-about-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.35);
    background: linear-gradient(135deg, #2ae771 0%, #15a392 100%);
}

/* Global Brand Button Unification - Verde Gradiente */
.btn-primary,
.btn-product,
.btn-promo-yellow,
.btn-about-cta {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: var(--white) !important;
    border: none !important;
    transition: var(--transition) !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25) !important;
}

.btn-primary:hover,
.btn-product:hover,
.btn-promo-yellow:hover,
.btn-about-cta:hover {
    background: linear-gradient(135deg, #2ae771 0%, #15a392 100%) !important;
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4) !important;
}

/* Responsive handled in responsive.css */

/* Final CTA Premium */
.final-cta {
    padding: 12rem 0;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(88, 28, 135, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.cta-glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    padding: 5rem 2rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta-decorations i {
    position: absolute;
    opacity: 0.1;
    color: var(--purple);
    animation: floatCTA 6s infinite ease-in-out alternate;
}

.cta-icon-1 {
    top: 10%;
    right: 10%;
    font-size: 3rem;
}

.cta-icon-2 {
    bottom: 15%;
    left: 8%;
    font-size: 2.5rem;
    animation-delay: 1s;
}

.cta-icon-3 {
    top: 20%;
    left: 15%;
    font-size: 2rem;
    animation-delay: 2.5s;
}

@keyframes floatCTA {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(20px, -20px) rotate(10deg);
    }
}

.final-cta h2 {
    font-size: 3.5rem;
    color: var(--purple);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    border: none;
}

.btn-text-mobile {
    display: none;
}

.btn-cta-whatsapp:hover {
    background: linear-gradient(135deg, #2ae771 0%, #15a392 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    color: white;
}

.cta-pet-image {
    margin-top: 4rem;
    position: relative;
    display: flex;
    justify-content: center;
}

.cta-pet-image img {
    width: 270px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Responsive handled in responsive.css */

/* Testimonials Section - Equal Height Cards */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.testimonial-card-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-card-modern p {
    flex: 1;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    margin: 1.5rem 0;
}

.rating-modern {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    color: #FFD449;
    font-size: 1.2rem;
}

.tutor-footer-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.tutor-avatar-modern {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--bg-soft);
}

.tutor-avatar-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tutor-info-text {
    display: flex;
    flex-direction: column;
}

.tutor-info-text b {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 700;
}

.tutor-info-text span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Owl Carousel Items - Equal Height */
#testimonials-carousel .item {
    display: flex;
    height: 100%;
}

#testimonials-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

#testimonials-carousel .owl-item {
    display: flex;
}

/* Floating WhatsApp Desktop */
.whatsapp-float-desktop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float-desktop:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #128c7e;
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.5);
}

.whatsapp-float-desktop i {
    font-size: 1.5rem;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}