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

:root {
    --orange-500: #ff7a18;
    --orange-300: #ffb347;
    --green-500: #128c7e;
    --dark-900: #111;
    --gray-700: #444;
    --gray-100: #f7f7f7;
}

body {
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1e1e1e;
    background-color: var(--gray-100);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Top Info Bar */
.top-info-bar {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #fff;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-info-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.9;
}

.top-info-item:first-child {
    margin-right: auto;
}

.top-info-item:last-child {
    margin-left: auto;
}

@media (max-width: 768px) {
    .top-info-bar {
        font-size: 0.7rem;
        padding: 0.35rem 0;
        margin-bottom: 0.25rem;
    }
    
    .top-info-content {
        padding: 0 1rem;
        gap: 0.5rem;
        justify-content: space-between;
    }

    .top-info-item {
        padding: 0.2rem 0;
        flex: 0 1 auto;
    }

    .top-info-item:first-child {
        margin-right: 0;
    }

    .top-info-item:last-child {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .top-info-bar {
        display: none;
    }

    .site-header {
        padding: 0;
    }

    .header-inner {
        padding: 0.7rem 1rem;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
}

.logo-icon {
    font-size: 2rem;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    font-weight: 500;
}

.main-nav a {
    color: #444;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-500);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: #ff7a18;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #111;
    display: block;
    transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle.active {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


.main-nav a:hover {
    color: #ff7a18;
    transform: translateY(-1px);
}

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

.whatsapp-cta {
    background-color: var(--green-500);
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(18, 140, 126, 0.3);
}

.whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(18, 140, 126, 0.4);
    background-color: #0d6e63;
}

.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("../img/ChatGPT Image 24 de nov. de 2025, 09_24_26.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px);
    z-index: 0;
    transform: scale(1.05);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 580px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: left;
    width: 100%;
    z-index: 2;
}

.hero-card {
    background: linear-gradient(160deg, rgba(27, 17, 9, 0.65), rgba(7, 7, 7, 0.55));
    border-radius: 1.75rem;
    padding: 2.5rem 2.8rem;
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.6rem, 4.2vw, 4.2rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-highlights {
    list-style: none;
    font-weight: 600;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.6rem 1.2rem;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
}

.hero-highlights li::before {
    content: '✔';
    color: #4ade80;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1;
}

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

.btn {
    border-radius: 999px;
    padding: 0.9rem 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn.primary {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-300));
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 122, 24, 0.35), 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn.primary:hover {
    box-shadow: 0 12px 28px rgba(255, 122, 24, 0.45), 0 6px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.btn.secondary {
    border: 2.5px solid #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.btn.danger {
    background: #e63946;
    color: #fff;
}

.btn:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.section {
    padding: 5rem 0;
}

.featured-products {
    padding: 3rem 0 2.5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.featured-products .section-header {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 0.8rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-500);
    font-size: 1.1rem;
}

.product-card ul {
    list-style: none;
    display: grid;
    gap: 0.4rem;
    color: #555;
}

.center {
    text-align: center;
}

.services {
    background: #fff8f2;
}

.featured-products {
    background: #fff;
}

.slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slider-window {
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: stretch;
}

.slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s ease;
    align-items: stretch;
}

.slider-item {
    background: #fff;
    border-radius: 1.5rem;
    min-width: 280px;
    max-width: 280px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.slider-item figure {
    border-top-left-radius: 1.125rem;
    border-top-right-radius: 1.125rem;
    overflow: hidden;
    margin: 0;
    flex-shrink: 0;
}

.slider-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 1.125rem 1.125rem 0 0;
}

.slider-info {
    padding: 1.2rem 1.3rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.slider-info h3 {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.3;
}

.slider-info p {
    margin: 0;
    margin-top: 0.4rem;
    line-height: 1.4;
    color: #555;
    font-size: 0.95rem;
}

.badge {
    align-self: flex-start;
    padding: 0.25rem 0.75rem;
    border-radius: 40px;
    background: #FFE9CC;
    color: #F28C28;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.2rem;
}

.badge.alt {
    background: #D1F2EB;
    color: #128c7e;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e63946;
    margin-top: 0.5rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.price-tag::before {
    content: '💰';
    font-size: 1.1rem;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--orange-500);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.slider-control.prev {
    left: -22px;
}

.slider-control.next {
    right: -22px;
}

.slider-control:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.15);
    background: var(--orange-500);
    color: #fff;
}

.slider-control i {
    font-weight: 300;
}

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

.services-grid article {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-grid article:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 122, 24, 0.12);
    color: var(--orange-500);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    transition: background 0.25s ease, transform 0.25s ease;
}

.services-grid article:hover .service-icon {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-300));
    color: #fff;
    transform: scale(1.05);
}

.social-proof {
    background: #111;
    color: #fff;
    text-align: center;
}

.proof-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.testimonials {
    background: #fff;
}

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

.testimonials-grid article {
    background: #fff8f2;
    border-radius: 1.5rem;
    padding: 1.8rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.testimonials-grid p {
    margin: 0;
    font-size: 1rem;
    color: #4a4a4a;
}

.testimonials-grid .author strong {
    font-size: 1rem;
}

.testimonials-grid .author small {
    color: #777;
}

.proof-content blockquote {
    font-size: 1.2rem;
    font-weight: 600;
    border-left: 4px solid #ff7a18;
    padding-left: 1rem;
    text-align: left;
}

.rating {
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.promotions {
    background: linear-gradient(135deg, #fff7f1, #ffe9e0);
    position: relative;
    overflow: hidden;
}

.promotions::after {
    content: "";
    position: absolute;
    inset: 20% -10% auto auto;
    width: 220px;
    height: 220px;
    background: rgba(255, 122, 24, 0.15);
    filter: blur(60px);
    border-radius: 50%;
    pointer-events: none;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.promo-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promo-card.featured {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
}

.promo-card h3 {
    font-size: 1.4rem;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(230, 57, 70, 0.12);
    color: #e63946;
    font-weight: 600;
    font-size: 0.85rem;
}

.promo-badge i {
    font-size: 0.95rem;
}

.promo-card.featured .promo-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.promo-badge.alt {
    background: rgba(18, 140, 126, 0.12);
    color: var(--green-500);
}

.promo-card .price {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #e63946;
}

.promo-card.featured .price {
    color: #fff;
}

.promo-benefits {
    list-style: none;
    display: grid;
    gap: 0.4rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
}

.promo-card.featured .promo-benefits {
    color: rgba(255, 255, 255, 0.9);
}

.promo-benefits li::before {
    content: "•";
    margin-right: 0.4rem;
    color: var(--orange-500);
}

.promo-card.featured .promo-benefits li::before {
    color: #fff;
}

.btn.ghost {
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: #1e1e1e;
    text-transform: none;
    letter-spacing: normal;
    width: fit-content;
    padding: 0.65rem 1.5rem;
}

.promo-card.featured .btn.ghost {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.about {
    background: radial-gradient(circle at top left, rgba(255, 122, 24, 0.08), transparent 45%), #f6fbf2;
}

.about-content {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(360px, 1.1fr);
    gap: 2.5rem;
    align-items: center;
}

.about-image {
    min-height: 320px;
    border-radius: 2.5rem;
    background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35)), url("../img/sobre.png");
    background-size: cover;
    background-position: center;
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transform: scale(1.05);
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
    pointer-events: none;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 55%);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.about-text .lead {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 0.2rem;
}

.section-pill {
    align-self: flex-start;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    background: rgba(18, 140, 126, 0.18);
    color: var(--green-500);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.highlight-card {
    border-radius: 1.25rem;
    padding: 1.35rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid #00000014;
}

.highlight-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.highlight-card strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.highlight-card p {
    margin: 0;
    color: #4c4c4c;
}

.accent-orange .highlight-icon {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
}

.accent-blue .highlight-icon {
    background: linear-gradient(135deg, #2b6cb0, #63b3ed);
}

.accent-green .highlight-icon {
    background: linear-gradient(135deg, #128c7e, #31b487);
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.stat-card {
    flex: 1 1 160px;
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #00000014;
}

.stat-card span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange-500);
}

.stat-card small {
    display: block;
    font-weight: 600;
    color: #555;
}

.stat-card:nth-child(1) {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
}

.stat-card:nth-child(1) span,
.stat-card:nth-child(1) small {
    color: #fff;
}

.stat-card:nth-child(2) {
    background: linear-gradient(135deg, #128c7e, #31b487);
}

.stat-card:nth-child(2) span,
.stat-card:nth-child(2) small {
    color: #fff;
}

.stat-card:nth-child(3) {
    background: linear-gradient(135deg, #2b6cb0, #63b3ed);
}

.stat-card:nth-child(3) span,
.stat-card:nth-child(3) small {
    color: #fff;
}

.gallery {
    background: #fff;
}

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

.gallery-grid figure {
    margin: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.faq {
    background: linear-gradient(135deg, #f2f7ff, #fff);
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-list details {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 1.2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.faq-list summary {
    font-weight: 600;
    cursor: pointer;
}

.faq-list p {
    margin-top: 0.6rem;
    color: #555;
}

.contact-cta {
    background: #111;
    color: #fff;
}

.contact-cta__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.contact-cta .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.location {
    background: #fff;
}

.map-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

.site-footer {
    background: #0b0b0b;
    color: #fff;
    padding: 3.5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 122, 24, 0.15), transparent 45%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-grid>div strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}

.footer-brand p {
    margin: 0.8rem 0 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(18, 140, 126, 0.18);
    color: #31d197;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 0;
    display: grid;
    gap: 0.4rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: #ffb347;
}

.footer-contact li {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact i {
    color: #ffb347;
}

.footer-newsletter p {
    margin: 0.5rem 0 1rem;
    color: rgba(255, 255, 255, 0.75);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    border-radius: 999px;
    border: none;
    padding: 0.7rem 1rem;
}

.newsletter-form button {
    border: none;
    border-radius: 999px;
    padding: 0.7rem 1.2rem;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.social-links {
    display: flex;
    gap: 0.6rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.2s;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: #ffb347;
}

.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
}

.footer-legal {
    display: inline-flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.floating-whatsapp {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    background: var(--green-500);
    color: #fff;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 15px 35px rgba(18, 140, 126, 0.3);
    z-index: 1000;
    transition: transform 0.2s, box-shadow 0.2s;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 40px rgba(18, 140, 126, 0.4);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content {
        padding: 3rem 1.5rem;
        text-align: center;
        max-width: 100%;
    }

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

    .product-card {
        padding: 1.5rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .about-image {
        min-height: 260px;
    }

    .about-stats {
        justify-content: center;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #fff;
        padding: 1rem 1.5rem 1.5rem;
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 1.25rem 1.25rem;
        z-index: 10;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 0.4rem 0;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .slider {
        padding: 0 3rem;
    }

    .slider-control.prev {
        left: 0.25rem;
    }

    .slider-control.next {
        right: 0.25rem;
    }
    
    .slider-item {
        min-width: 240px;
        max-width: 240px;
    }
    
    .slider-item img {
        height: 160px;
    }
    
    .slider-info {
        padding: 1rem 1.1rem 1.1rem;
    }
    
    .slider-info h3 {
        font-size: 1.1rem;
    }
    
    .price-tag {
        font-size: 1.15rem;
    }
    
    .featured-products {
        padding: 2rem 0 1.5rem 0;
    }
    
    .featured-products .section-header {
        margin-top: 1rem;
        margin-bottom: 1.25rem;
    }

    .proof-content blockquote {
        text-align: center;
    }

    .contact-cta__content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .header-inner {
        padding: 0.6rem 1rem;
    }

    .main-nav {
        display: none;
    }

    .whatsapp-cta {
        width: 90%;
        max-width: 90%;
        padding: 0.75rem 1rem;
        text-align: center;
        border-radius: 40px;
        margin: 0 auto;
        display: block;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        background-position: center;
        min-height: 60vh;
        margin-top: 0.6rem;
    }

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

    .hero-card {
        padding: 1.4rem 1.1rem;
        border-radius: 1.25rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 2rem 1rem;
    }

    .hero-highlights {
        gap: 0.5rem 0.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-highlights li {
        font-size: 0.95rem;
    }

    .hero-highlights li::before {
        font-size: 1rem;
    }

    .hero-actions {
        gap: 0.75rem;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .floating-whatsapp {
        right: 1rem;
        bottom: 1rem;
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }

    .slider {
        padding: 0 1.5rem;
    }

    .slider-item {
        min-width: 85vw;
    }

    .slider-control {
        width: 44px;
        height: 44px;
    }

    .about-stats {
        flex-direction: column;
    }

    .gallery-grid img {
        height: 180px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

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

    .footer-legal {
        flex-direction: column;
        gap: 0.3rem;
    }

    .footer-contact li {
        align-items: flex-start;
        line-height: 1.4;
    }
}