/* ============================================
   VESTIDA DE SUCESSO - STYLE GUIDE
   Design: Luxury Editorial (Vogue, Chanel, Dior)
   Colors: Black, Gold, Beige, White
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    color: #1a1a1a;
    background-color: #FAFAF8;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: white;
    border-bottom: 1px solid #E8E3DE;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
}

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

.nav-links {
    display: none;
    gap: 2rem;
}

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

    .nav-links a {
        font-size: 0.875rem;
        transition: color 0.3s;
    }

    .nav-links a:hover {
        color: #D4AF37;
    }
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.btn-primary {
    background-color: #1a1a1a;
    color: white;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #D4AF37;
    color: #1a1a1a;
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: white;
}

/* Sections */
.section-white {
    background-color: white;
    padding: 5rem 0;
}

.section-gray {
    background-color: #F5F1ED;
    padding: 5rem 0;
}

.section-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2C2C2C 100%);
    color: white;
    padding: 5rem 0;
}

.section-dark h2 {
    color: white;
}

.section-dark p {
    color: #E8E3DE;
}

.section-dark a {
    color: white;
}

.section-dark .text-luxury {
    color: #D4AF37;
}

/* Section Content */
.section-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-content h2 {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #5C4033;
    margin-bottom: 3rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5F1ED 0%, #FAFAF8 100%);
    padding: 4rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.text-luxury {
    color: #D4AF37;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #5C4033;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

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

.stars {
    color: #D4AF37;
    font-size: 1.25rem;
    letter-spacing: 0.2em;
}

.hero-image {
    position: relative;
    height: 400px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.problem-card {
    background: #F5F1ED;
    padding: 2rem;
    border-radius: 0.5rem;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.problem-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-box {
    background-color: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #D4AF37;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

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

/* Product Section */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-image {
    position: relative;
    height: 400px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.pillar {
    display: flex;
    gap: 1.5rem;
}

.pillar-number {
    font-size: 2rem;
    font-weight: bold;
    color: #D4AF37;
    flex-shrink: 0;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

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

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.check {
    color: #D4AF37;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* How to Style */
.how-to-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .how-to-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.how-to-image {
    position: relative;
    height: 400px;
}

.how-to-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.tip {
    padding: 1.5rem;
    background: #F5F1ED;
    border-radius: 0.5rem;
}

.tip h3 {
    margin-bottom: 0.5rem;
}

/* Presence Box */
.presence-box {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.presence-item {
    padding: 1.5rem;
    background: #F5F1ED;
    border-radius: 0.5rem;
}

/* Learning Grid */
.learning-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.learning-item {
    background: #F5F1ED;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.learning-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

/* Authority Section */
.authority-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.authority-subtitle {
    font-size: 1.25rem;
    color: #B8956A;
    margin-bottom: 1.5rem;
}

.authority-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.authority-mission {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.authority-image {
    position: relative;
    height: auto;
}

.authority-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #D4AF37;
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #5C4033;
}

/* Offer Section */
.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.offer-item {
    background: #F5F1ED;
    padding: 2rem;
    border-radius: 0.5rem;
    display: flex;
    gap: 1rem;
}

.offer-check {
    color: #D4AF37;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.offer-price {
    text-align: center;
    padding: 2rem;
    background: #F5F1ED;
    border-radius: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

/* Guarantee Box */
.guarantee-box {
    background: white;
    padding: 3rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.guarantee-icon {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.guarantee-emphasis {
    font-size: 1.25rem;
    font-weight: 600;
    color: #D4AF37;
}

/* FAQ */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    border: 1px solid #E8E3DE;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: #F5F1ED;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #E8E3DE;
}

.faq-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.faq-toggle {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #E8E3DE;
}

.faq-answer.active {
    display: block;
}

/* Final CTA */
.final-cta {
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    color: #E8E3DE;
}

.cta-footer {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #B8956A;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #B8956A;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #B8956A;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #D4AF37;
}

.footer-bottom {
    border-top: 1px solid #2C2C2C;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .section-white,
    .section-gray,
    .section-dark {
        padding: 3rem 0;
    }

    .hero {
        padding: 2rem 0;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #FAFAF8;
}

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B8956A;
}
