@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    --bg-color: #000000;
    --surface-color: #0a0a0a;
    --accent-color: #FF1B8D;
    --accent-glow: rgba(255, 27, 141, 0.3);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1100px;
    --section-spacing: clamp(5rem, 15vh, 10rem);
    --modal-bg: rgba(10, 10, 10, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    background-color: var(--bg-color);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

h1,
h2,
h3,
.brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

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

section {
    padding: 8rem 0;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    height: 70px;
    display: flex;
    align-items: center;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-socials {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header-socials a {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.header-socials a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.header-socials i {
    font-size: 18px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--accent-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 0 20px var(--accent-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-glow);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: var(--transition-smooth);
}

.mobile-menu-toggle i {
    width: 28px;
    height: 28px;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: -1;
    mask-image: linear-gradient(to left, black, transparent);
    -webkit-mask-image: linear-gradient(to left, black, transparent);
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 27, 141, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-premium-cup {
    position: absolute;
    bottom: -8vh;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(300px, 70vh, 800px);
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at top, rgba(255, 27, 141, 0.15) 0%, rgba(20, 20, 20, 0.8) 40%, rgba(0, 0, 0, 1) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(255, 27, 141, 0.1);
    opacity: 0.7;
    animation: floatingCup 8s ease-in-out infinite;
}

@keyframes floatingCup {
    0% {
        transform: translate(-50%, 0);
        filter: drop-shadow(0 0 30px rgba(255, 27, 141, 0.05));
    }
    50% {
        transform: translate(-50%, -15px);
        filter: drop-shadow(0 -10px 60px rgba(255, 27, 141, 0.2));
        -webkit-text-stroke: 1px rgba(255, 27, 141, 0.3);
    }
    100% {
        transform: translate(-50%, 0);
        filter: drop-shadow(0 0 30px rgba(255, 27, 141, 0.05));
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.hero-social-links a:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--accent-glow);
    background: rgba(255, 27, 141, 0.05);
}

.hero-social-links i {
    width: 20px;
    height: 20px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
    font-weight: 800;
}

.hero h1 span {
    color: var(--accent-color);
    display: inline-block;
    padding-bottom: 0.1em;
    background: linear-gradient(to right, var(--accent-color), #ff5eb3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 27, 141, 0.3));
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 27, 141, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.scroll-indicator:hover {
    color: var(--accent-color);
}

.scroll-indicator svg {
    width: 35px;
    height: 35px;
    stroke-width: 1.5px;
}

@keyframes bounce {

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

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

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

/* --- Stats --- */
.stats {
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 5rem 0;
}

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

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* --- Services/Products --- */
.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 3.5rem;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

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

.service-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 27, 141, 0.15);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 27, 141, 0.12), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

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

.service-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    padding: 2rem;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.03);
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-info {
    padding: 2.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

/* --- Chi Siamo Section --- */
.craft-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.craft-img {
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

.craft-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(20deg, rgba(255, 27, 141, 0.1), transparent);
}

.craft-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    letter-spacing: -0.04em;
}

.craft-feature {
    margin-bottom: 2.5rem;
}

.craft-feature h4 {
    color: var(--accent-color);
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}

.craft-feature p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* --- Contact Form Section --- */
.contact-form-section {
    padding: 10rem 0;
    background: linear-gradient(to bottom, transparent, rgba(255, 27, 141, 0.02));
}

.form-container {
    max-width: 850px;
    margin: 0 auto;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 4.5rem;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 27, 141, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.form-container:hover::after {
    opacity: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.2rem;
    color: white;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.06);
    outline: none;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* --- Footer --- */
.footer {
    background: var(--bg-color);
    padding: 8rem 0 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer .brand-name,
.footer h4 {
    color: var(--accent-color);
    margin-bottom: 1.8rem;
    display: block;
}

.footer .logo-container {
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-links a {
    white-space: nowrap;
}

.footer-info {
    grid-row: span 1;
}

/* Make social section span all columns on its own row */
.footer-links:last-of-type {
    grid-column: 1 / -1;
    margin-top: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.company-legal-info {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.company-legal-info p {
    margin-bottom: 0.3rem !important;
}

.footer-socials a {
    font-size: 1.8rem;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
}

/* --- Product Detail Pages --- */
.category-hero {
    padding: 12rem 0 6rem;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(255, 27, 141, 0.08) 0%, transparent 50%);
}

.category-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.product-gallery {
    padding-bottom: var(--section-spacing);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 27, 141, 0.15);
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transition: 0.5s;
}

.product-item:hover::before {
    left: 100%;
}

.product-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
}

.product-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- WhatsApp Widget --- */
.whatsapp-widget {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: 2000;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
}

.whatsapp-widget:hover {
    transform: translateY(-10px) scale(1.05);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .category-hero {
        padding: 8rem 0 3rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        display: flex;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        display: block;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }

    .header-socials {
        display: none;
    }

    .nav-right {
        gap: 1rem;
    }

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 35px;
    }

    .logo-container {
        gap: 0.6rem;
    }

    .logo-text {
        font-size: 1.05rem;
    }

    .hero {
        padding-top: 6rem;
        text-align: center;
        min-height: 100vh;
        min-height: 100svh;
    }

/* --- Shop Experiment Styles --- */
.shop-hero {
    padding: 12rem 0 6rem;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(255, 27, 141, 0.12) 0%, transparent 50%);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.product-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    cursor: pointer;
}

.product-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 27, 141, 0.1);
}

.product-img-wrapper {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.product-img-wrapper img {
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.product-item:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.product-price {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.2rem;
}

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    max-width: 600px;
    width: 100%;
    padding: 3.5rem 3rem;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--accent-color);
    color: white;
    transform: rotate(90deg);
}

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

.modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 27, 141, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.modal-icon i {
    width: 40px;
    height: 40px;
}

.modal-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.modal-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.modal-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem;
    border-radius: 16px;
    font-weight: 600;
    transition: var(--transition-smooth);
    font-size: 1.05rem;
    text-decoration: none;
    cursor: pointer;
}

.modal-cta-whatsapp {
    background: #25D366;
    color: white;
}

.modal-cta-whatsapp:hover {
    background: #1eb954;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.modal-cta-call {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
}

.modal-cta-call:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.modal-cta-form {
    background: var(--accent-color);
    color: white;
}

.modal-cta-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

/* Admin Styles - Floating Widget */
.admin-badge {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--surface-color);
    border: 2px solid var(--accent-color);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    gap: 1rem;
    animation: slideUp 0.5s ease;
}

.admin-badge.visible {
    display: flex;
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.admin-count {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.admin-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
}

    .hero-background {
        width: 100%;
        mask-image: linear-gradient(to bottom, black, transparent);
        -webkit-mask-image: linear-gradient(to bottom, black, transparent);
    }

    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0;
        margin-bottom: 2.5rem;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        padding: 1.2rem;
        justify-content: center;
        font-size: 1.1rem;
    }

    .stats {
        padding: 4rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .stat-item h3 {
        font-size: 3rem;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        border-radius: 24px;
    }

    .service-card:active {
        transform: scale(0.98);
    }

    .service-info {
        padding: 1.5rem;
    }

    .service-info h3 {
        font-size: 1.5rem;
    }

    .craft-section {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .craft-img {
        border-radius: 24px;
        order: -1;
    }

    .craft-content h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .craft-feature {
        margin-bottom: 2rem;
    }

    .form-container {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

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

    .footer {
        padding: 4rem 0 6rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        text-align: left;
    }

    .footer-info {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-info p {
        margin: 1rem auto;
    }

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

    .company-legal-info {
        text-align: center;
        margin-top: 1.5rem;
    }

    .whatsapp-widget span {
        display: none;
    }

    .whatsapp-widget {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 1rem;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }

    .whatsapp-widget i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2,
    .craft-content h2 {
        font-size: 1.8rem;
    }

    .nav-links a {
        font-size: 1.6rem;
    }

    .form-container {
        padding: 2rem 1.2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.1rem;
        font-size: 16px;
        /* Prevent zoom on iOS */
    }

    .nav-cta {
        padding: 0.45rem 0.8rem;
        font-size: 0.85rem;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .logo-img {
        height: 32px;
    }

    .logo-container {
        gap: 0.5rem;
    }

    .nav-right {
        gap: 0.7rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 360px) {
    .logo-text {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .logo-container {
        gap: 0.4rem;
    }

    .logo-img {
        height: 30px;
    }

    .nav-cta {
        padding: 0.4rem 0.65rem;
        font-size: 0.8rem;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .badge {
        font-size: 0.6rem;
        padding: 0.35rem 0.8rem;
        margin-bottom: 1.5rem;
    }
}

/* --- Legal Pages --- */
.legal-page {
    padding: 12rem 0 8rem;
    min-height: 80vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 5rem;
    border-radius: 40px;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    color: var(--accent-color);
}

.legal-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    list-style: disc;
}

.legal-content li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-content strong {
    color: white;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 3rem 1.5rem;
        border-radius: 24px;
    }

    .legal-content h1 {
        font-size: 2.2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 32px;
    position: relative;
    transition: var(--transition-smooth);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.google-badge i {
    color: #4285F4;
    /* Google Blue */
}

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

.quote-icon {
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 1.05rem;
    color: white;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Rating Card --- */
.rating-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 27, 141, 0.1) 0%, var(--surface-color) 100%) !important;
    text-decoration: none;
    border-color: var(--accent-color) !important;
}

.rating-card .rating-value {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 0.5rem 0;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.rating-card .stars {
    color: #FFD700;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.4rem;
}

.rating-card .stars i {
    fill: currentColor;
    width: 24px;
    height: 24px;
}

.rating-card .stars i:last-child {
    opacity: 0.7;
}

.rating-card p {
    font-style: normal !important;
    font-weight: 600;
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
    color: white !important;
}

.review-cta {
    font-size: 0.85rem !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 100px !important;
}

.rating-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 27, 141, 0.2);
}

/* --- FAQ Section --- */
.faq-section {
    padding-bottom: 2rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.faq-item.open {
    border-color: var(--accent-color);
}

.faq-item.open .faq-answer {
    padding-bottom: 2rem;
    max-height: 200px;
    opacity: 1;
}

.faq-item.open i {
    transform: rotate(45deg);
    color: var(--accent-color);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10000;
    transform: translateY(200%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-btn {
    flex: 1;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-accept {
    background: var(--accent-color);
    color: white;
    border: none;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }

    .cookie-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cookie-btn {
        width: 100%;
        padding: 1rem;
    }
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 3rem;
    left: 3rem;
    z-index: 1500;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 50px;
        height: 50px;
    }
}

/* --- More Info Banner --- */
.more-info-banner {
    padding: 8rem 0;
    background: radial-gradient(circle at 50% 100%, rgba(255, 27, 141, 0.05) 0%, transparent 70%);
    border-top: 1px solid var(--border-color);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.info-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 4rem;
    border-radius: 40px;
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 27, 141, 0.05), transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.info-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    color: var(--accent-color);
}

.card-icon i {
    width: 40px;
    height: 40px;
}

.info-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.info-card .btn {
    display: inline-flex;
    justify-content: center;
    width: auto;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .more-info-banner {
        padding: 5rem 0;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-card {
        padding: 3rem 2rem;
        border-radius: 32px;
    }

    .info-card h3 {
        font-size: 1.6rem;
    }
}

/* --- Feature Chips Grid --- */
.feature-chips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .feature-chips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.feature-chip {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.feature-chip:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 27, 141, 0.1);
}

.feature-chip .chip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-chip h4 {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.feature-chip p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}