/* 
* deepnudetelegramCl.pw - Chilean AI Deepnude Telegram Bot
* CSS Stylesheet - Optimized for Mobile and SEO
* Colors: Based on Chilean Flag (Blue #0039A6, White #FFFFFF, Red #D52B1E)
*/

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

:root {
    --primary: #0039A6; /* Chilean blue */
    --primary-light: #3366CC;
    --primary-dark: #002A80;
    --accent: #D52B1E; /* Chilean red */
    --accent-light: #E05D53;
    --accent-dark: #B01F18;
    --text: #333333;
    --text-light: #666666;
    --bg-light: #FFFFFF;
    --bg-grey: #F7F7F7;
    --shadow: rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.3;
}

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

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

.highlight, .accent {
    color: var(--accent);
    font-weight: 700;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px var(--shadow);
    padding: 15px 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
}

.logo-text .highlight {
    color: var(--accent);
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    gap: 25px;
}

.menu li a {
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu li a:hover {
    color: var(--primary);
}

.cta-button {
    background-color: var(--accent);
    color: white !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(213, 43, 30, 0.2);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1010;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: var(--bg-grey);
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tagline {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.stats-container {
    display: flex;
    gap: 30px;
    margin-bottom: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-button {
    background-color: var(--accent);
    color: white;
    padding: 14px 30px;
    border-radius: 4px;
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary-button:hover {
    background-color: var(--accent-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(213, 43, 30, 0.25);
}

.secondary-button {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 4px;
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secondary-button:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 57, 166, 0.2);
}

/* How It Works Section */
.how-section {
    background-color: var(--bg-light);
    text-align: center;
    position: relative;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 25px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

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

.step-icon {
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
}

.step h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.step h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 1.5px;
}

.cta-center {
    margin-top: 50px;
    text-align: center;
}

/* Features Section */
.features-section {
    background-color: var(--bg-grey);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow);
    border-top-color: var(--accent);
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    flex-grow: 1;
}

/* About Section */
.about-section {
    background-color: var(--bg-light);
    position: relative;
}

.about-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.highlight-text {
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    margin: 30px 0;
    padding: 20px;
    background-color: var(--bg-grey);
    border-radius: 5px;
    position: relative;
}

.highlight-text:before {
    content: '"';
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    opacity: 0.2;
}

.highlight-text:after {
    content: '"';
    position: absolute;
    bottom: -15px;
    right: 10px;
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    opacity: 0.2;
}

.button-left {
    margin-top: 30px;
}

/* Footer */
.site-footer {
    background-color: #1A1A1A;
    color: white;
    padding: 60px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-favicon {
    display: inline-block;
    margin-left: 10px;
}

.footer-brand p {
    color: #CCC;
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-links {
    flex: 3;
    display: flex;
    justify-content: space-around;
}

.footer-column {
    flex: 1;
    min-width: 120px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #CCC;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #999;
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.9rem;
    }
    
    .hero-section .container,
    .about-section .container {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-image,
    .about-content,
    .about-image {
        flex: 100%;
        width: 100%;
    }
    
    .hero-image,
    .about-image {
        margin-top: 40px;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }
    
    .menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-light);
        padding: 80px 30px 30px;
        z-index: 1000;
        gap: 20px;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .stats-container {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.9rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .button-group {
        flex-direction: column;
        width: 100%;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding-top: 120px;
    }
    
    .stats-container {
        padding: 15px;
    }
    
    .stat {
        padding: 0 5px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Additional SEO Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
