/* =========================================
   CONSCIÊNCIA JEANS - LANDING PAGE STYLES
   ========================================= */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffff;
}

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

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

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

/* === BUTTONS === */
.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-transform: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-align: center;
}

.btn-green {
    background: #39ff14;
    color: #0a1a3a;
    border: none;
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.4);
}

.btn-green:hover {
    background: #2de00f;
    box-shadow: 0 6px 30px rgba(57, 255, 20, 0.6);
    transform: translateY(-2px);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    background: linear-gradient(135deg, #0a1a3a 0%, #0d2347 40%, #132d59 60%, #1a3a6e 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('images/hero_model.png') center center / cover no-repeat;
    opacity: 0.15;
    filter: blur(2px);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
}

.hero-logo {
    max-width: 220px;
    margin-bottom: 30px;
}

.logo-text-fallback {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.hero-badge {
    display: inline-block;
    background: #ff0000;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #39ff14;
    line-height: 1.15;
    margin-bottom: 24px;
    text-transform: none;
}

.hero-subtitle {
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 36px;
}

.hero-image {
    flex: 0 0 500px;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

/* =========================================
   BI-ELASTIC INTRO SECTION
   ========================================= */
.bi-elastic-section {
    background: linear-gradient(180deg, #0a1a3a 0%, #0d2854 50%, #0a1a3a 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.bi-elastic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.02) 2px,
        rgba(255,255,255,0.02) 4px
    );
    pointer-events: none;
}

.section-title-white {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
}

.section-subtitle-white {
    font-size: 22px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 50px;
    position: relative;
}

.jeans-showcase {
    position: relative;
}

.jeans-showcase img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* =========================================
   TECHNOLOGY SECTION
   ========================================= */
.technology-section {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.tech-intro {
    font-size: 22px;
    color: #0a1a3a;
    font-weight: 400;
    margin-bottom: 40px;
}

.tech-content {
    max-width: 800px;
    margin: 0 auto 40px;
}

.tech-text {
    font-size: 20px;
    color: #1a1a2e;
    line-height: 1.7;
    margin-bottom: 24px;
}

.tech-text em {
    font-style: italic;
    font-weight: 500;
}

.tech-highlight-italic {
    font-size: 24px;
    color: #0a1a3a;
    font-weight: 600;
    font-style: italic;
    line-height: 1.5;
    margin: 30px auto;
    max-width: 700px;
}

/* =========================================
   SUCCESS SECTION
   ========================================= */
.success-section {
    background: #ffffff;
    padding: 60px 0 80px;
    text-align: center;
}

.section-title-dark {
    font-size: 36px;
    font-weight: 700;
    color: #0a1a3a;
    margin-bottom: 10px;
}

.section-subtitle-dark-bold {
    font-size: 22px;
    font-weight: 600;
    color: #0a1a3a;
    margin-bottom: 40px;
}

.lifestyle-image {
    margin: 40px 0;
}

.lifestyle-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.success-content {
    max-width: 800px;
    margin: 40px auto;
}

.quote-highlight {
    font-size: 26px;
    font-weight: 700;
    color: #0a1a3a;
    line-height: 1.5;
    margin: 50px auto;
    max-width: 800px;
    padding: 30px;
    border-left: 4px solid #39ff14;
    background: linear-gradient(90deg, rgba(57, 255, 20, 0.05), transparent);
    text-align: left;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px auto;
    max-width: 900px;
}

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

.benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    color: #39ff14;
    background: #0a1a3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-item p {
    font-size: 15px;
    color: #0a1a3a;
    line-height: 1.4;
}

.benefit-item p em {
    font-weight: 700;
    font-style: italic;
}

/* =========================================
   CONCEPT SECTION
   ========================================= */
.concept-section {
    background: #f5f0e8;
    padding: 80px 0;
}

.concept-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.concept-text {
    flex: 1;
}

.concept-image {
    flex: 0 0 400px;
    max-width: 400px;
}

.concept-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.check-list {
    list-style: none;
    margin-top: 30px;
}

.check-list li {
    font-size: 20px;
    font-weight: 700;
    color: #0a1a3a;
    padding: 8px 0;
    padding-left: 10px;
}

/* =========================================
   VERSATILITY SECTION
   ========================================= */
.versatility-section {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.section-title-dark-italic {
    font-size: 28px;
    font-weight: 600;
    color: #0a1a3a;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 40px;
}

.section-title-dark-italic span {
    font-style: normal;
    font-weight: 400;
}

.versatility-content {
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================
   VIDEO SECTION
   ========================================= */
.video-section {
    background: #0a1a3a;
    padding: 80px 0;
    text-align: center;
}

.video-placeholder {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #132d59, #0d2347);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-placeholder:hover {
    border-color: #39ff14;
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.2);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(57, 255, 20, 0.2);
    border: 3px solid #39ff14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #39ff14;
    transition: all 0.3s ease;
}

.play-button svg {
    width: 30px;
    height: 30px;
    margin-left: 4px;
}

.video-placeholder:hover .play-button {
    background: rgba(57, 255, 20, 0.4);
    transform: scale(1.1);
}

.video-label {
    font-size: 72px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 20px;
    text-transform: uppercase;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px auto;
    max-width: 900px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0a1a3a;
    color: #39ff14;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-info strong {
    display: block;
    font-size: 15px;
    color: #0a1a3a;
}

.stars {
    color: #ffc107;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    font-style: italic;
}

/* =========================================
   AUTHORITY / STATS SECTION
   ========================================= */
.authority-section {
    background: linear-gradient(180deg, #0a1a3a 0%, #0d2854 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.authority-header {
    margin-bottom: 30px;
}

.authority-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.authority-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.authority-n1 {
    font-size: 160px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    font-style: italic;
}

.authority-do {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
}

.authority-mercado {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
}

.authority-description {
    max-width: 700px;
    margin: 20px auto 50px;
}

.authority-description p {
    font-size: 22px;
    color: #ffffff;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px auto;
    max-width: 900px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #39ff14;
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #39ff14;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.discount-note {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   QUALITY SECTION
   ========================================= */
.quality-section {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.quality-content {
    max-width: 800px;
    margin: 40px auto;
}

/* =========================================
   WHY DIFFERENT SECTION
   ========================================= */
.why-different-section {
    background: linear-gradient(180deg, #0a1a3a 0%, #0d2854 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hash-bg {
    position: absolute;
    font-size: 600px;
    font-weight: 900;
    color: rgba(57, 255, 20, 0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    pointer-events: none;
}

.why-title {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 60px;
    position: relative;
}

.features-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    position: relative;
}

.features-list li {
    font-size: 22px;
    color: #ffffff;
    padding: 18px 0 18px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    line-height: 1.5;
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #39ff14;
    font-size: 28px;
    font-weight: 700;
}

.features-list li strong {
    font-weight: 700;
    color: #ffffff;
}

.features-list li em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

/* =========================================
   PAYMENT SECTION
   ========================================= */
.payment-section {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.payment-title {
    font-size: 24px;
    font-weight: 600;
    color: #0a1a3a;
    line-height: 1.5;
    margin-bottom: 20px;
}

.payment-subtitle {
    font-size: 20px;
    color: #0a1a3a;
    margin-bottom: 40px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.payment-card {
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.payment-card:hover {
    border-color: #39ff14;
    box-shadow: 0 8px 30px rgba(57, 255, 20, 0.1);
}

.payment-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.payment-method {
    font-size: 18px;
    font-weight: 700;
    color: #0a1a3a;
    line-height: 1.5;
}

/* =========================================
   CELEBRITIES SECTION
   ========================================= */
.celebrities-section {
    background: linear-gradient(180deg, #0a1a3a 0%, #0d2854 100%);
    padding: 80px 0;
    text-align: center;
}

.section-title-white {
    margin-bottom: 40px;
    position: relative;
}

.celebrities-grid {
    margin-bottom: 30px;
}

.celebrities-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.celebrity-names {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.celebrity-names span {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    background: #0a1a3a;
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.about-tags {
    font-size: 22px;
    font-weight: 600;
    color: #39ff14;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
}

.gallery-section {
    margin-top: 50px;
}

.gallery-section img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    background: #f5f0e8;
    padding: 80px 0;
    text-align: center;
}

.contact-title {
    font-size: 28px;
    font-weight: 700;
    color: #0a1a3a;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 20px;
    color: #0a1a3a;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #8b6914;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.social-icon:hover {
    background: #0a1a3a;
    transform: scale(1.1);
}

.contact-info {
    max-width: 500px;
    margin: 0 auto;
}

.contact-email {
    font-size: 20px;
    color: #0a1a3a;
    margin-bottom: 30px;
}

.contact-phone-label {
    font-size: 20px;
    font-weight: 700;
    color: #0a1a3a;
    margin-bottom: 8px;
}

.contact-phone-number {
    font-size: 28px;
    font-weight: 800;
    color: #0a1a3a;
    margin-bottom: 20px;
}

.contact-hours-label {
    font-size: 18px;
    color: #0a1a3a;
    margin-bottom: 8px;
}

.contact-hours {
    font-size: 18px;
    color: #0a1a3a;
    margin-bottom: 4px;
}

.contact-phone-secondary {
    font-size: 22px;
    font-weight: 700;
    color: #0a1a3a;
    margin-top: 20px;
}

/* =========================================
   FOOTER BAR
   ========================================= */
.footer-bar {
    background: #0a1a3a;
    padding: 20px 0;
    text-align: center;
}

.footer-bar p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
    }

    .hero-text {
        padding-right: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-image {
        flex: 0 0 auto;
        max-width: 400px;
        margin-top: 40px;
    }

    .concept-content {
        flex-direction: column;
    }

    .concept-image {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .payment-options {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .authority-n1 {
        font-size: 100px;
    }

    .why-title {
        font-size: 42px;
    }

    .section-title-white {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn-cta {
        padding: 14px 30px;
        font-size: 15px;
    }

    .section-title-white {
        font-size: 24px;
    }

    .section-title-dark {
        font-size: 26px;
    }

    .quote-highlight {
        font-size: 20px;
        padding: 20px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .authority-n1 {
        font-size: 70px;
    }

    .why-title {
        font-size: 30px;
    }

    .features-list li {
        font-size: 17px;
    }

    .celebrity-names {
        gap: 16px;
    }

    .celebrity-names span {
        font-size: 16px;
    }

    .tech-text {
        font-size: 17px;
    }

    .hash-bg {
        font-size: 300px;
    }
}
