:root {
    --primary: #3b213f;
    --primary-light: #56305d;
    --accent: #f7c948;
    --accent-hover: #e7b82e;
    --pink: #ec5a9b;
    --blue: #9ed9e8;
    --bg-white: #ffffff;
    --bg-light: #fcf9f2;
    --text-dark: #1a151d;
    --text-body: #4a434d;
    --text-light: #d9cfe0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 12px 34px rgba(59, 33, 63, 0.05);
    --shadow-hover: 0 24px 50px rgba(59, 33, 63, 0.12);
    --radius: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.15;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background:
        radial-gradient(circle at top left, rgba(247, 201, 72, .22), transparent 34%),
        var(--bg-light);
}

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

.eyebrow,
.section-subtitle {
    display: block;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pink);
    margin-bottom: 14px;
    font-weight: 800;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 22px;
}

.section-desc {
    font-size: 1.08rem;
    max-width: 650px;
    margin-bottom: 48px;
}

.grid-3,
.grid-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.grid-3>*,
.grid-4>* {
    width: 100%;
    max-width: 400px;
}

@media (min-width: 768px) {

    .grid-3>*,
    .grid-4>* {
        width: calc(50% - 12px);
        /* 2 itens por linha */
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

@media (min-width: 1024px) {

    .grid-3>*,
    .grid-4>* {
        width: calc(33.333% - 16px);
        /* 3 itens por linha, o que sobrar centraliza */
        max-width: 380px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    font-size: .95rem;
    font-weight: 800;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-lg {
    padding: 20px 38px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #ffe27a);
    color: #2f2034;
    box-shadow: 0 18px 34px rgba(247, 201, 72, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(247, 201, 72, 0.5);
}

.btn-text {
    color: #fff;
    padding-left: 0;
    padding-right: 0;
}

.btn-text:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-4px);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(59, 33, 63, .92);
    backdrop-filter: blur(16px);
    padding: 14px 0;
    box-shadow: 0 10px 35px rgba(39, 32, 44, .18);
}

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

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo img {
    width: 100px;
    height: auto;
}

.brand-logo span {
    display: block;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--accent);
    text-transform: uppercase;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    opacity: .86;
}

.nav-links a:not(.btn):hover {
    color: var(--accent);
    opacity: 1;
}

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

.hero {
    position: relative;
    min-height: 760px;
    height: 100vh;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 5%;
    width: 350px;
    height: 350px;
    background: var(--pink);
    opacity: .2;
    border-radius: 50%;
    filter: blur(80px);
}

.hero::after {
    content: '';
    position: absolute;
    right: 5%;
    bottom: 5%;
    width: 450px;
    height: 450px;
    background: var(--accent);
    opacity: .22;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(59, 33, 63, .98) 0%, rgba(59, 33, 63, .8) 45%, rgba(236, 90, 155, .15) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: #fff;
    padding-top: 90px;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.15rem;
    opacity: .9;
    margin-bottom: 38px;
    max-width: 570px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    position: relative;
}

.about-image img:not(.experience-logo) {
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(39, 32, 44, .16);
}

.experience-logo {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 180px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 10px 20px rgba(59, 33, 63, 0.2));
    transition: var(--transition);
}

.experience-badge {
    position: absolute;
    bottom: -32px;
    right: -24px;
    background: linear-gradient(135deg, var(--pink), #ff8abf);
    color: #fff;
    padding: 32px 34px;
    text-align: center;
    border-radius: 32px;
    box-shadow: 0 26px 55px rgba(236, 90, 155, .35);
}

.experience-badge .number {
    display: block;
    font-size: 2.8rem;
    color: var(--accent);
    line-height: 1;
}

.experience-badge .text {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.signature {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(59, 33, 63, .12);
}

.signature .name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-dark);
}

.signature .role {
    font-size: .85rem;
    color: var(--pink);
    font-weight: 800;
}

.card-feature,
.card-service {
    background: #fff;
    padding: 42px 32px;
    border: 1px solid rgba(59, 33, 63, .05);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.card-feature:hover,
.card-service:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-feature .icon {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.card-feature h3,
.card-service h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-service {
    display: block;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Garante que todos os cards tenham a mesma altura */
}

.card-service::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--pink));
    opacity: 0;
    transition: var(--transition);
}

.card-service-content {
    position: relative;
    z-index: 2;
}

.card-service p {
    font-size: .95rem;
    margin-bottom: 22px;
}

.link-arrow {
    color: var(--pink);
    font-size: 1.4rem;
    font-weight: 800;
}

.card-service:hover h3,
.card-service:hover p,
.card-service:hover .link-arrow {
    color: #fff;
}

.card-service:hover::before {
    opacity: 1;
}

.stats {
    position: relative;
    background: url('assets/dogs_03.avif') center/cover fixed;
    color: #fff;
    padding: 120px 0;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(59, 33, 63, 0.88);
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.stats .section-header {
    flex: 0 0 100%;
    margin-bottom: 50px;
    text-align: center;
}

/* Ajuste de cores para legibilidade na seção escura */
.stats .section-header .section-subtitle {
    color: var(--accent);
}

.stats .section-header .section-title {
    color: #fff;
}

.stats .section-header .section-desc {
    color: rgba(255, 255, 255, 0.85);
}

.stats .card-service {
    flex: 1 1 300px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.08);
    /* Base transparente */
    backdrop-filter: blur(12px);
    /* Efeito de vidro */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Borda sutil */
    color: #fff;
    text-align: left;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.stats .card-service h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.stats .card-service p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.stats .card-service .link-arrow {
    color: var(--accent);
    display: inline-block;
    transition: transform 0.3s ease;
    margin-top: 20px;
}

.stats .card-service:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
    /* Brilho dourado na borda ao passar o mouse */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.stats .card-service:hover h3 {
    color: var(--accent);
}

.stats .card-service:hover .link-arrow {
    transform: translateX(10px);
    color: #fff;
}

/* Desativa o gradiente sólido padrão para manter o efeito de vidro nesta seção */
.stats .card-service::before {
    display: none;
}

.stat-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 36px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .84;
    font-weight: 800;
}

.trust-block {
    background: var(--bg-light);
}

/* Carousel Styles */
.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-track {
    position: relative;
    width: 100%;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(10px);
}

.testimonial-pet {
    margin-bottom: 20px;
}

.testimonial-pet img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    box-shadow: var(--shadow-soft);
    margin: 0 auto;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(59, 33, 63, 0.12);
}

.carousel-control:hover {
    background: var(--primary);
    color: var(--accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(59, 33, 63, 0.25);
}

.carousel-control.prev {
    left: -60px;
}

.carousel-control.next {
    right: -60px;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.trust-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.trust-avatars img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 4px solid var(--bg-light);
    margin-left: -16px;
    object-fit: cover;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-stars {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.quote-icon {
    font-size: 4rem;
    color: var(--pink);
    line-height: 1;
    margin-bottom: 12px;
    opacity: .35;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--pink);
    transform: scale(1.3);
}

.trust-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 28px;
    line-height: 1.4;
}

.trust-author {
    font-weight: 800;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: .88rem;
}

.cta-final {
    position: relative;
    padding: 120px 0;
    background-image: url('assets/dogs_01.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 33, 63, .96), rgba(236, 90, 155, .82));
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.cta-final h2 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 22px;
}

.cta-final p {
    font-size: 1.12rem;
    opacity: .92;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    margin-top: 40px;
}

.map-container:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.map-container iframe {
    display: block;
}

.footer {
    background: var(--primary);
    color: #fff;
    padding: 76px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
    margin-bottom: 56px;
}

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

    .footer-grid-signature {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-brand p {
    margin-top: 16px;
    color: var(--text-light);
    max-width: 330px;
}

.footer h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
    color: var(--text-light);
}

.footer ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 28px;
    display: flex;
    gap: 14px;
    text-align: center;
    color: var(--text-light);
    font-size: .85rem;
    justify-content: space-between;
    align-items: center;
}

.legal-links a:hover {
    color: #fff;
}

.btn-floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: pulseWa 2.5s infinite;
}

.btn-floating-wa:hover {
    transform: scale(1.1) translateY(-4px);
    background: #20bd5a;
}

@keyframes pulseWa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

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

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

.reveal {
    opacity: 0;
    visibility: hidden;
}

.fade-up.active {
    animation: fadeUp .8s cubic-bezier(.25, .46, .45, .94) forwards;
}

.fade-right.active {
    animation: fadeRight .8s cubic-bezier(.25, .46, .45, .94) forwards;
}

.fade-left.active {
    animation: fadeLeft .8s cubic-bezier(.25, .46, .45, .94) forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateY(40px);
    }

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

@keyframes fadeRight {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 72px 0;
    }

    .btn-floating-wa {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .hero {
        min-height: 680px;
    }

    .hero-actions,
    .cta-actions {
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .experience-badge {
        padding: 16px 24px;
        border-radius: 20px;
    }

    .experience-badge .number {
        font-size: 2.2rem;
    }

    .experience-badge .text {
        font-size: 0.7rem;
    }
}

/* Classes para Páginas Internas */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-header .section-title {
    color: #fff;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-40 {
    margin-bottom: 40px;
}

.text-justify {
    text-align: justify;
}

.highlight-pink {
    color: var(--pink);
}

/* Taxi Pet Section Styles */
.taxi-visual-container {
    background: #fff;
    height: 450px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(59, 33, 63, 0.05);
}

.taxi-icon {
    font-size: 8rem;
}

.taxi-badge-float {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--pink);
    color: #fff;
    padding: 10px 18px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.taxi-perks {
    margin: 24px 0;
}

.perk-item {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

/* Hydra Page Specific Styles */
.hydra-hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    background-image: url('assets/dogs_01.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
}

.hydra-hero .hero-content {
    background: rgba(59, 33, 63, 0.3);
    backdrop-filter: blur(8px);
    padding: 80px 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.hydra-hero .hero-overlay {
    background: linear-gradient(to bottom, rgba(59, 33, 63, 0.7), rgba(59, 33, 63, 0.4), rgba(59, 33, 63, 0.8));
}

.hydra-highlights {
    margin-top: 30px;
}

.highlight-item {
    padding: 24px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(59, 33, 63, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(59, 33, 63, 0.05);
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: var(--bg-light);
    border-color: var(--accent);
}

.highlight-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--pink);
}

.highlight-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.card-product {
    background: linear-gradient(135deg, #ffffff 0%, #fdfdfd 100%);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(59, 33, 63, 0.05);
    overflow: hidden;
}

.card-product:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.card-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.card-product:hover::before {
    transform: scaleX(1);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-product .badge {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 12px;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
}

.benefit-card {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: scale(1.05);
}

.benefit-icon {
    background: var(--bg-light);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(10deg);
}

.benefit-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hydra-hero .hero-content {
        padding: 40px 20px;
        margin: 0 15px;
    }

    .grid-2.hydra-highlights {
        gap: 15px;
    }

    .carousel-control.prev {
        left: 0;
    }

    .carousel-control.next {
        right: 0;
    }

    .carousel-control {
        font-size: 2.5rem;
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .carousel-control {
        display: none;
    }
}