:root {
    --primary: #FF2D55;
    --primary-dark: #D41D42;
    --accent: #FF9500;
    --bg: #FFFFFF;
    --bg-alt: #F9FAFB;
    --text: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

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

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

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

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

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

/* Brand & Logo */
.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 4px 10px rgba(255, 45, 85, 0.2));
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-top: 2px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: color 0.3s;
}

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

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
}

/* Hero */
.hero {
    padding: 150px 0 80px;
    background: radial-gradient(circle at top right, rgba(255, 45, 85, 0.05), transparent);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(255, 45, 85, 0.1);
    z-index: -1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 15px 35px -10px rgba(255, 45, 85, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: rotate(0deg);
}

/* How it works */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-alt);
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-num {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 45, 85, 0.05);
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.step-card p {
    color: var(--text-light);
}

/* Gallery */
.gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Final */
.cta-final {
    padding: 80px 0 120px;
}

.cta-card {
    background: var(--primary);
    padding: 100px 40px;
    border-radius: 60px;
    text-align: center;
    color: white;
    box-shadow: 0 30px 60px -12px rgba(255, 45, 85, 0.3);
}

.cta-card h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn-chat-big {
    background: var(--white);
    color: var(--primary);
    padding: 22px 48px;
    font-size: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.btn-chat-big:hover {
    transform: scale(1.05);
    background: #FFFAFB;
}

.footer-cta-decoration {
    margin-top: 30px;
}

.footer-cta-decoration p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    opacity: 0.7;
}

/* Catalog Page Styles */
.catalog-header {
    padding: 180px 0 60px;
    background: radial-gradient(circle at top right, rgba(255, 45, 85, 0.03), transparent);
    text-align: center;
}

.catalog-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    margin-bottom: 20px;
}

.catalog-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.catalog-main {
    padding-bottom: 100px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.product-image {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 10;
}

.product-info {
    padding: 30px;
}

.theme-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 12px;
}

.theme-desc {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.kit-items {
    list-style: none;
    margin-bottom: 30px;
}

.kit-items li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 600;
}

.kit-items li i {
    width: 16px;
    height: 16px;
    color: #4ADE80;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.included-details {
    margin-top: 100px;
}

.items-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
}

.summary-item i {
    width: 24px;
    height: 24px;
}

.summary-item span {
    font-size: 14px;
    font-weight: 700;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--bg-alt);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-info {
    color: var(--text-light);
    font-size: 14px;
}

.footer-whatsapp {
    display: flex;
    align-items: center;
}

.whatsapp-link-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.whatsapp-link-footer:hover {
    transform: scale(1.05);
}

.whatsapp-link-footer i {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .steps-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 42px;
    }
    .nav-links {
        display: none;
    }
}
