@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
    --brand-green: #1c5daa;
    --brand-dark: #0b1f3a;
    --brand-accent: #5eb2ff;
    --brand-light: #f0f4fa;
    --text-main: #1a2233;
    --text-muted: #5c6b85;
    --header-height: 80px;
    --max-width: 1200px;
    --shadow-soft: 0 12px 32px rgba(12, 31, 58, 0.08);
    --transition-base: 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 0 24px;
}

.top-bar {
    background: linear-gradient(90deg, rgba(37, 174, 212, 0.08) 0%, #ffffff 45%, rgba(28, 93, 170, 0.08) 100%);
    border-bottom: 1px solid rgba(28, 93, 170, 0.12);
    position: relative;
    z-index: 11;
}

.top-bar__message {
    color: var(--brand-dark);
}

.top-bar__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 8px 24px;
    width: min(100%, var(--max-width));
    margin: 0 auto;
    flex-wrap: wrap;
}

.top-bar__icons {
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
}

.top-bar__icons a {
    color: var(--brand-dark);
    transition: transform var(--transition-base), color var(--transition-base);
}

.top-bar__icons a:hover {
    color: var(--brand-green);
    transform: translateY(-2px);
}

.top-bar__icons i {
    color: inherit;
}

.main-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 0 24px;
    background-color: #25aed4;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 10;
    overflow: visible;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
}

.logo img {
    height: 180px;
    width: auto;
    display: block;
    margin-top: 40px;
    margin-bottom: -60px;
    filter: drop-shadow(0 16px 26px rgba(12, 31, 58, 0.22));
}

.logo span {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand-green);
    letter-spacing: 0.08em;
}

.main-nav {
    flex: 1 1 0;
}

.main-nav--left .nav-list {
    justify-content: flex-end;
}

.main-nav--right .nav-list {
    justify-content: flex-start;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    font-weight: 600;
}

.nav-list a {
    color: #ffffff;
    transition: color var(--transition-base);
}

.nav-list a:hover,
.nav-list .highlight-link {
    color: #f0f4fa;
}

.nav-item {
    position: relative;
}

.nav-item>a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 220px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 16px 0;
    list-style: none;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--transition-base), transform var(--transition-base);
    z-index: 15;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-weight: 500;
    color: var(--text-muted);
}

.dropdown-menu a:hover {
    background-color: rgba(94, 178, 255, 0.12);
    color: var(--brand-dark);
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero {
    position: relative;
    min-height: clamp(420px, 70vh, 560px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28afd5;
    text-align: center;
    background: url('public/images/hero5.png') center/cover no-repeat;
    overflow: hidden;
}

.hero::after {
    content: none;
}

.hero-divider {
    flex: 1 1 auto;
    background: #25aed4;
    margin-top: -1px;
    position: relative;
}

.hero-divider::before {
    content: "";
    position: absolute;
    inset: 0;
    width: min(100%, var(--max-width));
    margin: 0 auto;
    background: #25aed4;
}

@media (max-width: 960px) {
    .hero-divider {
        margin-top: -2px;
    }

    .hero-divider::before {
        width: 100%;
    }
}

.hero__overlay {
    display: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 24px;
}

.hero__content h1 {
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    margin-bottom: 16px;
    font-weight: 700;
}

.hero__content p {
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: #28afd5;
    text-shadow: inherit;
}

.hero-divider {
    height: 100px;
    background: #25aed4;
}

.about {
    padding: 96px 0 96px 0;
    background-color: var(--brand-light);
    position: relative;
    padding-top: 56px;
}

.about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 12%, rgba(37, 174, 212, 0.15), transparent 50%);
    pointer-events: none;
}

.about__layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.about__image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 12px;
}

.about__bottom {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-card {
    flex: 1 1 320px;
    min-width: 280px;
}

@media (max-width: 960px) {
    .about__top {
        grid-template-columns: 1fr;
    }

    .about__image {
        margin-top: 32px;
        justify-self: center;
    }

    .about__bottom {
        flex-direction: column;
        gap: 24px;
        margin-top: 32px;
    }
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(37, 174, 212, 0.16);
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-accent);
}

.about__story h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    margin-top: 18px;
    color: var(--brand-dark);
}

.about__story-card {
    position: relative;
    margin-top: 28px;
    padding: 36px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(37, 174, 212, 0.22);
    box-shadow: 0 20px 44px rgba(12, 31, 58, 0.12);
}

.about__story-card::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 174, 212, 0.18), transparent 70%);
    z-index: -1;
}

.about__story-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    text-align: justify;
}

.about__story-card p+p {
    margin-top: 16px;
}

.about__sidebar {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.about-card {
    border-radius: 22px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid rgba(28, 93, 170, 0.12);
    box-shadow: 0 18px 42px rgba(12, 31, 58, 0.1);
}

.about-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.about-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(37, 174, 212, 0.15);
    color: var(--brand-green);
    font-size: 1.2rem;
}

.about-card h3 {
    font-size: 1.18rem;
    color: var(--brand-dark);
    margin: 0;
}

.about-card p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.about-card--mission,
.about-card--vision {
    background: #25aed4;
    border: none;
    box-shadow: 0 24px 48px rgba(12, 31, 58, 0.22);
}

.about-card--mission .about-card__icon,
.about-card--mission h3,
.about-card--mission p,
.about-card--vision .about-card__icon,
.about-card--vision h3,
.about-card--vision p {
    color: #ffffff;
}

.about-card--mission .about-card__icon,
.about-card--vision .about-card__icon {
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 960px) {
    .about__layout {
        grid-template-columns: 1fr;
    }

    .about__story-card {
        padding: 28px;
    }
}

.catalog {
    background: linear-gradient(180deg, #ffffff 0%, var(--brand-light) 100%);
    padding: 72px 0;
}

.catalog__container {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: stretch;
}

.catalog__card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(28, 93, 170, 0.12);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.catalog__card h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 0;
    color: var(--brand-dark);
}

.catalog__card p {
    color: var(--text-muted);
    margin-bottom: 0;
    flex-grow: 1;
}

.main-footer {
    position: relative;
    background: #25aed4;
    color: #ffffff;
    padding: 80px 0 0;
    border-top: none;
    overflow: hidden;
}

.main-footer::before {
    content: "";
    position: absolute;
    inset: -140px -80px 0;
    background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.15), transparent 65%);
    z-index: 0;
}

.footer-main,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-brand p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
}

.footer-columns {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-column h4 {
    margin-bottom: 16px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    transition: color var(--transition-base), transform var(--transition-base);
}

.footer-column a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
    display: grid;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.footer-contact li a {
    color: inherit;
    font-weight: 600;
    transition: color var(--transition-base);
}

.footer-contact li a:hover {
    color: #ffffff;
}

.footer-contact--inline a:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.footer-bottom {
    margin-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(11, 31, 58, 0.2);
}

.footer-bottom__content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 16px;
    font-size: 1.1rem;
}

.footer-social a {
    color: #ffffff;
    transition: transform var(--transition-base), color var(--transition-base);
}

.footer-social a:hover {
    color: var(--brand-light);
    transform: translateY(-2px);
}

.main-nav .nav-btn {
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-accent));
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(12, 31, 58, 0.18);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.main-nav .nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(12, 31, 58, 0.22);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-base);
}

.btn-primary {
    background: #25aed4;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(12, 31, 58, 0.24);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(12, 31, 58, 0.28);
}

.btn-secondary {
    background: #25aed4;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 31, 58, 0.18);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(12, 31, 58, 0.24);
}

.btn-outline {
    border: 2px solid var(--brand-dark);
    color: var(--brand-dark);
    background: transparent;
}

.btn-outline:hover {
    background: var(--brand-dark);
    color: #ffffff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.nav-toggle span {
    height: 3px;
    width: 70%;
    margin: 0 auto;
    border-radius: 999px;
    background: #ffffff;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(12, 31, 58, 0.18);
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 31, 58, 0.45);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 25;
    pointer-events: none;
}

.sidebar-overlay--visible {
    opacity: 1;
    pointer-events: auto;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 80vw);
    height: 100vh;
    background: #ffffff;
    box-shadow: -16px 0 40px rgba(12, 31, 58, 0.16);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 30;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar--open {
    transform: translateX(0);
}

.sidebar__close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--brand-dark);
    cursor: pointer;
}

.sidebar__nav {
    flex: 1 1 auto;
    overflow-y: auto;
}

.sidebar__list {
    list-style: none;
    display: grid;
    gap: 18px;
}

.sidebar__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-main);
}

.sidebar__link:hover {
    color: var(--brand-green);
}

.sidebar__item {
    display: grid;
    gap: 12px;
}

.sidebar__submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    background: none;
    border: none;
    font: inherit;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
}

.sidebar__submenu {
    list-style: none;
    display: grid;
    gap: 12px;
    padding-left: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.sidebar__submenu--open {
    max-height: 320px;
}

.sidebar__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-accent));
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(12, 31, 58, 0.22);
}

.sidebar__cta:hover {
    transform: translateY(-2px);
}

body.sidebar-open {
    overflow: hidden;
}

@media (max-width: 960px) {
    .main-header {
        position: relative;
        background: transparent;
        box-shadow: none;
        height: 0;
        padding: 0;
    }

    .main-nav {
        display: none;
    }

    .logo {
        position: absolute;
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        z-index: 22;
    }

    .logo img {
        height: 140px;
        margin: 0;
    }

    .nav-toggle {
        display: flex;
        position: absolute;
        top: 24px;
        left: 16px;
        width: 46px;
        height: 46px;
        border: none;
        border-radius: 12px;
        background: rgba(12, 31, 58, 0.9);
        box-shadow: 0 10px 24px rgba(12, 31, 58, 0.25);
        z-index: 24;
    }

    .hero {
        padding-top: clamp(100px, 18vh, 176px);
        min-height: clamp(520px, 95vh, 680px);
    }

    .hero__content {
        margin-top: -32px;
    }

    .home-image-grid {
        display: none;
    }
}

@media (max-width: 640px) {
    .logo img {
        height: 116px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
        top: 22px;
        left: 12px;
        border-radius: 10px;
    }

    .hero {
        padding-top: clamp(96px, 20vh, 156px);
        min-height: clamp(540px, 100vh, 720px);
    }

    .hero__content {
        margin-top: -150px;
    }
}

.contact-page {
    padding: 80px 0;
    background-color: var(--brand-light);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: var(--shadow-soft);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
}

.contact-info {
    background-color: #25aed4;
    color: #ffffff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.contact-info p+p {
    margin-top: 16px;
}

.contact-form-wrapper {
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.form-required-notice {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #dbe2ef;
    background-color: #f7f9fc;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(94, 178, 255, 0.25);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    justify-self: start;
    margin-top: 8px;
}

@media (max-width: 960px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 32px;
    }
}

@media (max-width: 720px) {
    .top-bar__content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .top-bar__icons {
        justify-content: center;
    }

    .footer-bottom__content {
        justify-content: center;
        text-align: center;
    }

    .footer-contact--inline {
        justify-content: center;
    }
}

.products-page {
    padding: 48px 0;
    background-color: var(--brand-light);
}

.products-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: flex-start;
}

.products-sidebar {
    position: sticky;
    top: 110px;
    background-color: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.sidebar-title {
    font-size: 1.2rem;
    color: var(--brand-dark);
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e0e6f1;
}

.category-list {
    list-style: none;
    display: grid;
    gap: 8px;
}

.category-list a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-muted);
    transition: background-color var(--transition-base), color var(--transition-base);
}

.category-list a:hover {
    background-color: rgba(37, 174, 212, 0.1);
    color: var(--brand-dark);
}

.category-list a.active {
    background-color: #25aed4;
    color: #ffffff;
}

.products-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    justify-items: center;
}

.product-card {
    background-color: #ffffff;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    padding: 20px;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
}

.product-card.hidden {
    display: none;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(12, 31, 58, 0.12);
}

.product-card__image-wrapper {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.product-card__image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-top: auto;
}

.category-anchor {
    scroll-margin-top: 120px;
}

@media (max-width: 960px) {
    .products-container {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: static;
        margin-top: 70px;
    }

    .home-image-grid {
        display: none;
    }
}

.carousel-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0 32px 0;
    padding: 50px 0;
}

.carousel {
    position: relative;
    width: 100vw;
    max-width: 1400px;
    height: 520px;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: 0 8px 32px rgba(12, 31, 58, 0.13);
    background: #fff;
    display: flex;
    align-items: center;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
    height: 100%;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 16px;
    /* antes: 32px */
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 4px 18px rgba(12, 31, 58, 0.10);
    background: #f0f4fa;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(37, 174, 212, 0.85);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
    opacity: 0.85;
}

.carousel-btn:hover {
    background: #1c5daa;
}

.carousel-btn.prev {
    left: 32px;
}

.carousel-btn.next {
    right: 32px;
}

@media (max-width: 1100px) {
    .carousel {
        max-width: 98vw;
        height: 320px;
    }

    .carousel-slide {
        height: 320px;
        padding: 12px;
    }

    .carousel-slide img {
        max-height: 220px;
        border-radius: 18px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 700px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .carousel {
        max-width: 100vw;
        width: 100vw;
        height: auto;
        min-height: 0;
        border-radius: 22px;
        overflow: hidden;
        margin: 0 auto;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 24px rgba(12, 31, 58, 0.13);
        padding: 0;
        background: transparent !important;
        box-shadow: none !important;
    }

    .carousel-slide {
        width: 100vw;
        height: auto;
        min-height: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
    }

    .carousel-slide img {
        width: 90vw;
        height: auto;
        max-width: 90vw;
        max-height: 90vh;
        border-radius: 22px;
        object-fit: contain;
        margin: 0 auto;
        display: block;
        background: #fff;
        box-shadow: none;
    }

    .carousel-btn {
        display: none !important;
    }
}

.catalogo-mobile-btn-wrapper {
    display: none;
    width: 100%;
    text-align: center;
    margin: 24px 0 0 0;
}

@media (max-width: 700px) {
    .catalogo-mobile-btn-wrapper {
        display: block;
        width: 100%;
    }

    .catalogo-mobile-btn {
        width: 90vw;
        max-width: 400px;
        font-size: 1.1rem;
        padding: 16px 0;
        margin: 0 auto;
        display: inline-block;
    }

    .carousel-slide {
        background: transparent;
    }

    .carousel-slide img {
        background: transparent;
    }
}

.home-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 56px auto 0 auto;
    max-width: 1100px;
    padding: 0 48px 40px 48px;
    box-sizing: border-box;
}

.home-image-grid img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(12, 31, 58, 0.13);
    background: #fff;
    object-fit: unset;
    aspect-ratio: unset;
    transition: transform 0.2s;
    display: block;
    margin: 0 auto;
}

@media (max-width: 960px) {
    .home-image-grid {
        display: none;
    }

    .home-image-grid-title {
        display: none;
    }
}

@media (min-width: 961px) {
    .carousel-container {
        display: none;
    }
}

.home-image-grid-btn-wrapper {
    display: flex;
    justify-content: center;
    margin: 32px 0 48px 0;
}

.home-image-grid-btn {
    font-size: 1.25rem;
    padding: 18px 44px;
    border-radius: 999px;
    box-shadow: 0 8px 32px rgba(12, 31, 58, 0.13);
    transition: transform 0.2s, box-shadow 0.2s;
}

.home-image-grid-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 40px rgba(12, 31, 58, 0.18);
}

@media (max-width: 960px) {
    .home-image-grid-btn-wrapper {
        display: none;
    }
}

.home-image-grid-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #25aed4;
    margin-top: 32px;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.mobile-only-title {
    display: none;
}

@media (max-width: 960px) {
    .mobile-only-title {
        display: block;
        margin-bottom: 10px;
    }

    .carousel-container {
        padding-top: 10px;
        padding-bottom: 32px;
        margin-top: 0;
    }
}