/* Latino TV Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Xfinity Standard', Arial, sans-serif;
    line-height: 1.6;
    color: #111;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Address Bar */
.address-bar {
    background-color: #f8f8f8;
    padding: 30px 0;
}

.address-bar p {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #111;
}

.address-form {
    max-width: 600px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.address-input {
    flex: 1;
    padding: 14px 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

.address-input:focus {
    border-color: #6a1b9a;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #6a1b9a;
    color: #fff;
}

.btn-primary:hover {
    background-color: #7b1fa2;
    transform: translateY(-2px);
}

/* Hero Section */
.latino-hero {
    background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
    padding: 80px 0;
    text-align: center;
}

.latino-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.latino-hero h2 {
    font-size: 32px;
    font-weight: 600;
    color: #6a1b9a;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #333;
}

.price-box {
    margin-bottom: 30px;
}

.price-large {
    font-size: 56px;
    font-weight: 700;
    color: #111;
}

.price-large .currency {
    font-size: 36px;
    vertical-align: super;
}

.price-large .period {
    font-size: 28px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto 25px;
}

.link-secondary {
    color: #6a1b9a;
    text-decoration: underline;
    font-size: 16px;
}

.link-secondary:hover {
    text-decoration: none;
}

.disclaimer {
    font-size: 13px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #fff;
}

.features-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #111;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

/* Movies Section */
.movies-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.movies-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.section-intro {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #333;
}

.channels-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.channel-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #6a1b9a;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.channel-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.channel-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #6a1b9a;
}

.channel-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Telenovelas Section */
.telenovelas-section {
    padding: 80px 0;
    background-color: #fff;
}

.telenovelas-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.additional-info {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 30px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    color: #555;
}

/* Sports Section */
.sports-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.sports-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    color: #333;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.news-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.cta-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.cta-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.cta-content {
    padding: 40px;
    text-align: center;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Legal Section */
.legal-section {
    padding: 60px 0;
    background-color: #fff;
}

.legal-text {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-text p {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 768px) {
    .latino-hero h1 {
        font-size: 56px;
    }
    
    .latino-hero h2 {
        font-size: 38px;
    }
    
    .input-group {
        flex-direction: row;
    }
    
    .address-input {
        flex: 1;
    }
    
    .btn-primary {
        flex-shrink: 0;
    }
    
    .hero-actions {
        flex-direction: row;
        max-width: none;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-card {
        flex-direction: row;
        align-items: center;
    }
    
    .cta-image {
        width: 50%;
        height: auto;
    }
    
    .cta-content {
        width: 50%;
    }
    
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .latino-hero h1 {
        font-size: 64px;
    }
    
    .latino-hero h2 {
        font-size: 42px;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-section h2,
    .movies-section h2,
    .telenovelas-section h2,
    .sports-section h2,
    .news-section h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .latino-hero h1 {
        font-size: 36px;
    }
    
    .latino-hero h2 {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .price-large {
        font-size: 42px;
    }
    
    .address-bar p {
        font-size: 16px;
    }
    
    .features-section h2,
    .movies-section h2,
    .telenovelas-section h2,
    .sports-section h2,
    .news-section h2 {
        font-size: 28px;
    }
    
    .cta-image {
        height: 250px;
    }
}