@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* CSS Reset and Variables */
:root {
    /* Colors */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(0, 0%, 9%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(0, 0%, 9%);
    --primary: hsla(150, 82%, 25%, 0.921);
    --primary-foreground: hsl(0, 0%, 98%);
    --secondary: hsl(0, 0%, 96%);
    --secondary-foreground: hsl(0, 0%, 9%);
    --muted: hsl(0, 0%, 96%);
    --hero-foreground: hsl(0, 0%, 57%);
    --muted-foreground: hsl(0, 0%, 52%);
    --bt-secondary-hover: hsl(0, 2%, 90%);
    --accent: hsl(0, 0%, 96%);
    --accent-foreground: hsl(0, 0%, 9%);
    --border: hsl(0, 0%, 90%);
    --ring: hsl(0, 0%, 9%);
    --shadow-color: rgba(0, 0, 0, 0.1);
    /* Gray Scale */
    --gray-50: hsl(0, 0%, 98%);
    --gray-100: hsl(0, 0%, 96%);
    --gray-200: hsl(0, 0%, 90%);
    --gray-300: hsl(0, 0%, 83%);
    --gray-400: hsl(0, 0%, 64%);
    --gray-500: hsl(0, 0%, 45%);
    --gray-600: hsl(0, 0%, 32%);
    --gray-700: hsl(0, 0%, 25%);
    --gray-800: hsl(0, 0%, 15%);
    --gray-900: hsl(0, 0%, 9%);
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 3rem 0 7rem;
    /* Typography */
    --font-family: "Outfit", system-ui, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 hsl(0 0% 0% / 0.05);
    --shadow-md: 0 4px 6px -1px hsl(0 0% 0% / 0.1), 0 2px 4px -2px hsl(0 0% 0% / 0.1);
    --shadow-lg: 0 10px 15px -3px hsl(0 0% 0% / 0.1), 0 4px 6px -4px hsl(0 0% 0% / 0.1);
    --shadow-xl: 0 20px 25px -5px hsl(0 0% 0% / 0.1), 0 8px 10px -6px hsl(0 0% 0% / 0.1);
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    /* Radius */
    --radius: 8px;
    --radius-sm: 4px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

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

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
}

}

/* Typography */
.text-primary {
    color: var(--primary);
    font-weight: 400;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.section-subtitle {
    font-size: var(--font-size-xl);
    font-weight: 300;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 768px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--font-size-5xl);
}

}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    border-radius: var(--radius-full);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--bt-secondary-hover);
    color: var(--foreground);
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--accent);
    border-color: var(--gray-300);
    color: var(--foreground);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: none;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

/* Header */


.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 45px;
    width: auto;
}

.nav-title {
    color: var(--text-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
    position: relative;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    background-color: hsla(0, 0%, 100%, 0.8);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.8rem;
}

.nav-item {
    color: var(--gray-500);
    font-weight: 500;
    transition: color var(--transition-normal);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0.7rem;
}

.nav-item:hover {
    color: var(--gray-900);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
    transition: background-color var(--transition-normal);
}

.mobile-menu-btn:hover {
    background-color: var(--accent);
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background-color: var(--foreground);
    transition: all var(--transition-normal);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    animation: fadeIn 0.3s ease-out;
}

.nav-mobile.active {
    display: flex;
}

.nav-item-mobile {
    text-align: left;
    padding: 0.5rem 0;
    color: var(--foreground);
    transition: color var(--transition-normal);
    background: none;
    border: none;
    cursor: pointer;
}

.nav-item-mobile:hover {
    color: var(--primary);
}

.header.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.header {
    transition: transform 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
}

}




/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--gray-400);
}

.hero-background {
    position: absolute;
    inset: 0;
    height: 40%;
    padding-left: 5rem;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 0 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--gray-50);
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease-out;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary);
    border-radius: var(--radius-full);
}

.hero-title {
    color: var(--gray-100);
    font-size: var(--font-size-5xl);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--hero-foreground);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: fadeIn 1.2s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeIn 1.4s ease-out 0.8s both;
}

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

.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
}

.stat-separator {
    width: 1px;
    height: 2rem;
    background-color: var(--border);
    display: none;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--font-size-5xl);
}

.hero-buttons {
    flex-direction: row;
    justify-content: center;
}

.hero-stats {
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.stat-separator {
    display: block;
}

}

/* Social Links */
.social-links {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background-color: var(--bt-secondary-hover);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

@media (max-width: 1024px) {
    .social-links {
        display: none;
}

}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--muted-foreground);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.5rem;
    background-color: var(--muted-foreground);
    border-radius: var(--radius-full);
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--gray-50), var(--background));
}

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

.feature-card {
    text-align: center;
    padding: 1rem;
    transition: all var(--transition-normal);
    animation: fadeIn 0.6s ease-out;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    background-color: hsla(0, 0%, 9%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.feature-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

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

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

.about-text {
    padding-top: 0;
}

.about-description {
    font-size: var(--font-size-lg);
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 3rem 0;
}

.about-photo {
    background-image: url('/assets/img/camiseta-2x.png');
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.play-icon {
    width: 4rem;
    height: 4rem;
    color: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
}

.stat-card .stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--muted-foreground);
    font-weight: 500;
}

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

.about-content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
}

.about-text {
    text-align: left;
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

}

/* Products Section */
.products {
    background-color: var(--gray-200);
    padding: var(--section-padding);
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: all var(--transition-normal);
}

.product-image {
    overflow: hidden;
}

.product-image img {
    width: 60%;
    height: auto;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.product-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.product-button {
    padding-top: 2rem;
}

.feature-tag {
    padding: 0.25rem 0.75rem;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.products-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    border-radius: var(--radius-xl);
}

.cta-title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.cta-description {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
}

}

/* Contact Section */
.contact {
    padding: var(--section-padding);
}

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

.contact-info-title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.contact-info-description {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    transition: box-shadow var(--transition-normal);
    animation: fadeIn 0.6s ease-out;
}

.hours-card {
    background-color: hsla(0, 0%, 9%, 0.05);
    border: 1px solid hsla(0, 0%, 9%, 0.1);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: hsla(0, 0%, 9%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.contact-details p {
    color: var(--muted-foreground);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-form-card {
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.form-title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    font-size: var(--font-size-base);
    transition: border-color var(--transition-normal);
    background-color: var(--background);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: none;
    font-family: inherit;
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-message {
    display: none;
    padding: 1rem;
    background-color: hsl(120, 60%, 95%);
    border: 1px solid hsl(120, 60%, 80%);
    margin-top: 1.5rem;
}

.success-message.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(120, 60%, 30%);
}

.success-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.success-message h4 {
    font-weight: 600;
    color: hsl(120, 60%, 30%);
}

.success-message p {
    color: hsl(120, 60%, 25%);
    font-size: var(--font-size-sm);
}

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

}

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

}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-normal);
    animation: fadeIn 0.6s ease-out;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color var(--transition-normal);
}

.faq-question:hover {
    background-color: hsla(0, 0%, 96%, 0.5);
}

.faq-question span {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--foreground);
    padding-right: 1rem;
}

.faq-icon {
    width: 2rem;
    height: 2rem;
    background-color: hsla(0, 0%, 9%, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

.faq-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-in-out;
}

.faq-answer.open {
    max-height: 300px;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
    margin: 0 1.5rem;
    padding-top: 1rem;
}

.faq-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: hsla(0, 0%, 9%, 0.05);
    border: 1px solid hsla(0, 0%, 9%, 0.1);
    border-radius: var(--radius-full);
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-cta p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* Reviews Section */
.reviews {
    padding: var(--section-padding);
}

.reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.carousel-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.review-slide {
    width: 100%;
    flex-shrink: 0;
    padding: 1rem 1rem;
}

.review-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background-color: var(--card);
    border-radius: var(--radius-xl);
    text-align: center;
}

.reviewer-image {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 4px solid hsla(0, 0%, 9%, 0.1);
}

.reviewer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-name {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.review-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
}

.review-text {
    font-size: var(--font-size-lg);
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 768px;
    margin: 0 auto;
    font-style: italic;
}

.carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    background-color: var(--background);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.carousel-btn-prev {
    left: 1rem;
}

.carousel-btn-next {
    right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.dot {
    width: 0.3rem;
    height: 0.3rem;
    border-radius: var(--radius-full);
    background-color: var(--border);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active {
    background-color: var(--primary);
    width: 2rem;
}

.dot:hover {
    background-color: hsla(0, 0%, 9%, 0.3);
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--background);
    border-radius: var(--radius-xl);
}

.reviews-stats .stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.reviews-stats .stat-label {
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--gray-700);
    color: var(--gray-300);
    padding: 2rem 0 0.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 4fr 1fr 1.5fr;
    gap: 2rem;
    padding: 1rem 2rem 1rem;
    justify-items: left;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-content: center;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-tittle {
    font-size: 3rem;
    font-weight: 700;
    color: whitesmoke;
}

.footer-brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: whitesmoke;
}

.footer-description {
    color: var(--gray-50);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-social .social-link {
    background-color: var(--gray-800);
    border-color: var(--gray-700);
    color: var(--gray-50);
}

.footer-social .social-link:hover {
    background-color: var(--gray-100);
    color: var(--gray-900);
}

.footer-links-logo {
    align-items: center;
}

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

.footer-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--gray-50);
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-nav li {
    color: var(--gray-50);
    cursor: pointer;
    transition: color var(--transition-normal);
    font-size: var(--font-size-sm);
}

.footer-nav li:hover,
.footer-nav button:hover {
    color: var(--gray-400);
}

.footer-nav button {
    background: none;
    border: none;
    color: var(--gray-50);
    cursor: pointer;
    transition: color var(--transition-normal);
}

.footer-contact {
    text-align: left !important;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info-item .contact-icon {
    background-color: var(--gray-800);
    color: var(--gray-50);
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-info-item .contact-icon svg {
    width: 1rem;
    height: 1rem;
}

.contact-info-item p {
    color: var(--gray-50);
    font-size: var(--font-size-sm);
    line-height: 1.5;
    text-align: left;
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding-top: 0.5rem;
    text-align: center;
    color: var(--gray-300);
    font-size: var(--font-size-sm);
}

.footer-bottom p {
    margin-bottom: 0rem;
    font-size: var(--font-size-xs);
}

@media (min-width: 768px) {
    .footer-content {
        text-align: left;
}

.footer-brand {
    text-align: left;
}

.footer-description {
    margin-left: 0;
    margin-right: 0;
}

.footer-social {
    justify-content: flex-start;
}

.footer-links-logo,
    .footer-links {
    text-align: left;
}

.footer-contact {
    text-align: left;
}

.contact-info-item {
    justify-content: flex-start;
}

}

/* Toast */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    padding: 1rem 1.5rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px;
    animation: slideIn 0.3s ease-out;
}

.toast.success {
    border-color: hsl(120, 60%, 80%);
    background-color: hsl(120, 60%, 95%);
}

.toast-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(120, 60%, 30%);
}

.toast-content h4 {
    font-weight: 600;
    color: hsl(120, 60%, 30%);
    margin-bottom: 0.25rem;
}

.toast-content p {
    color: hsl(120, 60%, 25%);
    font-size: var(--font-size-sm);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    transform: translateY(20px);
}

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

}

@keyframes slideIn {
    from {
        opacity: 0;
    transform: translateX(100%);
}

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

}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
}

40% {
    transform: translateX(-50%) translateY(-10px);
}

60% {
    transform: translateX(-50%) translateY(-5px);
}

}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
    opacity: 1;
}

100% {
    transform: translateX(-50%) translateY(1rem);
    opacity: 0;
}

}

/* Utility Classes */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Loading Spinner */
.loading-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--primary-foreground);
    border-top: 2px solid transparent;
    border-radius: var(--radius-full);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
}


}

/* ====== MOBILE/TABLET OPTIMIZATION PATCH ====== */
@media (max-width: 1023px) {
    body {
        padding-top: 70px;
    }
}

@media (max-width: 767px) {
    .products-grid,
    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    .product-card {
        grid-template-columns: 1fr;
    }
    .product-image img {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 600px) {
    .about,
    .products,
    .contact,
    .faq,
    .reviews {
        padding: 1.5rem 0 3rem;
    }
    .section-title,
    .hero-title {
        font-size: 2rem;
    }
    .section-subtitle,
    .hero-subtitle {
        font-size: 1rem;
    }
}

.btn,
.button,
.faq-question {
    min-height: 44px;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 2rem 0.5rem 1rem !important;
        justify-items: stretch !important;
    }
    .footer-brand,
    .footer-links,
    .footer-contact {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        text-align: left !important;
        margin-bottom: 1.5rem !important;
    }
    .footer-social {
        justify-content: flex-start !important;
    }
    .footer-description {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
}
@media (max-width: 600px) {
    .footer-content {
        padding: 1rem 0.25rem 1rem !important;
        gap: 1rem !important;
    }
}