/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.nav-brand .logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #F59E0B;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content .highlight {
    color: #F59E0B;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #EC4899, #8B5CF6);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
}

.cta-button i {
    margin-right: 0.5rem;
}

/* Plans Section */
.plans-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.plan-card.popular {
    border-color: #8B5CF6;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #8B5CF6, #EC4899);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    color: #666;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin: 0 0.2rem;
}

.cents {
    font-size: 1.5rem;
    color: #666;
}

.period {
    color: #666;
    font-size: 1rem;
}

.plan-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
}

.feature i {
    color: #28a745;
    margin-right: 0.8rem;
    font-size: 1rem;
}

.feature span {
    font-size: 0.95rem;
    color: #555;
}

.plan-button {
    width: 100%;
    background: linear-gradient(45deg, #8B5CF6, #3B82F6);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
    color: white;
    text-decoration: none;
}

.plan-button:visited {
    color: white;
}

.plan-button small {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, #28a745, #20c997);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.guarantee-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee-content h2 i {
    margin-right: 0.5rem;
    color: #F59E0B;
}

.guarantee-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-button {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    margin-right: 0.5rem;
}

/* Resources Section */
.resources-section {
    padding: 80px 0;
    background: white;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.resource-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid #8B5CF6;
}

.resource-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.resource-item i {
    font-size: 1.5rem;
    color: #8B5CF6;
    margin-right: 1rem;
    min-width: 30px;
}

.resource-item span {
    font-weight: 500;
    color: #333;
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.program-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #8B5CF6;
}

.program-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail {
    display: flex;
    align-items: center;
}

.detail i {
    color: #8B5CF6;
    margin-right: 0.8rem;
    min-width: 20px;
}

.detail span {
    color: #555;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-brand i {
    color: #F59E0B;
    margin-right: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: #F59E0B;
}

.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F59E0B;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: #F59E0B;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    margin: 0;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
/* Hosting Section */
.hosting-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.hosting-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    width: 100%;
    max-width: 400px;
}

.hosting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hosting-card.popular {
    border-color: #8B5CF6;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.hosting-header {
    text-align: center;
    margin-bottom: 2rem;
}

.hosting-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.hosting-price {
    margin-bottom: 1rem;
}

.original-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    position: relative;
}

.original-price span {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 1rem;
}

.discount-badge {
    background: linear-gradient(45deg, #EC4899, #8B5CF6);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.hosting-price .currency {
    font-size: 1.2rem;
    color: #666;
}

.hosting-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #8B5CF6;
    margin: 0 0.2rem;
}

.hosting-price .cents {
    font-size: 1.5rem;
    color: #8B5CF6;
}

.hosting-price .period {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.hosting-price small {
    display: block;
    color: #888;
    font-size: 0.85rem;
    line-height: 1.3;
}

.hosting-features {
    margin-bottom: 2rem;
}

.feature-category {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #8B5CF6;
}

.feature-category h4 {
    color: #8B5CF6;
    font-weight: 600;
    font-size: 1rem;
}

.hosting-button {
    width: 100%;
    background: linear-gradient(45deg, #8B5CF6, #3B82F6);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.hosting-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
    color: white;
    text-decoration: none;
}

.hosting-button:visited {
    color: white;
}

.hosting-button small {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

/* Hosting Benefits */
.hosting-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.benefit-item i {
    font-size: 2rem;
    color: #8B5CF6;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #666;
    line-height: 1.5;
}

/* Responsive adjustments for hosting */
@media (max-width: 768px) {
    .hosting-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 1.5rem;
    }
    
    .hosting-card.popular {
        transform: none;
    }
    
    .hosting-benefits {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hosting-grid {
        max-width: 900px;
        gap: 1.5rem;
    }
    
    .hosting-card {
        max-width: 380px;
    }
}
/* Logo responsiveness */
@media (max-width: 768px) {
    .nav-brand .logo {
        height: 38px;
    }
    
    .footer-brand .footer-logo {
        height: 45px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-brand .logo {
        height: 32px;
    }
    
    .footer-brand .footer-logo {
        height: 38px;
    }
}
/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card.featured {
    border-color: #8B5CF6;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #8B5CF6, #EC4899);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #8B5CF6, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.3rem 0;
}

.service-features i {
    color: #28a745;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.service-features span {
    font-size: 0.9rem;
    color: #555;
}

.service-price {
    margin: 1.5rem 0;
    text-align: center;
}

.service-price span {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.service-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #8B5CF6;
}

.service-price sup {
    font-size: 1rem;
}

.service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #8B5CF6, #3B82F6);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    text-align: center;
    padding: 2rem 1rem;
}

.why-item i {
    font-size: 3rem;
    color: #8B5CF6;
    margin-bottom: 1rem;
}

.why-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.why-item p {
    color: #666;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}
/* Contact Form Styles */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    background: linear-gradient(45deg, #8B5CF6, #3B82F6);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.contact-info {
    text-align: center;
    margin: 1.5rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #666;
}

.contact-info strong {
    color: #333;
    font-size: 1.1rem;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.faq-question i {
    color: #8B5CF6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
}
/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text .highlight {
    color: #8B5CF6;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #8B5CF6, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.about-icon i {
    font-size: 4rem;
    color: white;
}

/* Programs CTA */
.programs-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(45deg, #8B5CF6, #3B82F6);
    border-radius: 20px;
    color: white;
}

.programs-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.programs-cta .service-button {
    background: white;
    color: #8B5CF6;
}

.programs-cta .service-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Responsive adjustments for about section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-icon {
        width: 150px;
        height: 150px;
    }
    
    .about-icon i {
        font-size: 3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
/* Disabled/Muted features */
.feature .fas.fa-times {
    color: #dc3545;
}

.feature .text-muted {
    color: #6c757d !important;
    text-decoration: line-through;
}
/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    padding: 60px 0;
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.newsletter-form iframe {
    border-radius: 10px;
    min-height: 200px;
}

/* Footer Newsletter Signup */
.newsletter-signup {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #555;
}

.newsletter-signup h5 {
    color: #F59E0B;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-newsletter-form .form-group {
    margin: 0;
}

.footer-newsletter-form .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #555;
    border-radius: 8px;
    background: #444;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-newsletter-form .form-control::placeholder {
    color: #ccc;
}

.footer-newsletter-form .form-control:focus {
    outline: none;
    border-color: #8B5CF6;
    background: #555;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.btn-newsletter {
    background: linear-gradient(45deg, #8B5CF6, #3B82F6);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-newsletter:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

/* Responsive newsletter */
@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-text h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        padding: 0.5rem;
    }
    
    .newsletter-form iframe {
        min-height: 180px;
    }
    
    .footer-newsletter-form {
        max-width: 250px;
    }
}

/* Demo Player Section */
.demo-player-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.demo-player-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.demo-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.demo-feature i {
    color: #8B5CF6;
    font-size: 1.2rem;
    width: 20px;
}

.demo-feature span {
    font-weight: 500;
    color: #333;
}

.player-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 2px solid #8B5CF6;
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f3f4;
}

.player-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.player-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #dc3545;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}

.status-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #dc3545;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #8B5CF6, #3B82F6);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.volume-control i {
    color: #666;
    font-size: 0.9rem;
}

.volume-slider {
    flex: 1;
    height: 5px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #8B5CF6;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #8B5CF6;
    cursor: pointer;
    border: none;
}

.player-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.now-playing {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.now-playing .label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.now-playing .song-title {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.listeners {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.listeners i {
    color: #8B5CF6;
}

/* Responsive demo player */
@media (max-width: 768px) {
    .demo-player-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .demo-text h2 {
        font-size: 2rem;
    }
    
    .player-container {
        padding: 1.5rem;
    }
    
    .player-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .player-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .volume-control {
        width: 100%;
        max-width: 200px;
    }
    
    .player-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
/* Proteção contra cópia e seleção */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Permitir seleção apenas em inputs e textareas */
input, textarea, [contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Desabilitar arrastar imagens */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Permitir clique em links e botões */
a, button, input, textarea, select {
    pointer-events: auto;
}

/* Proteção contra print */
@media print {
    * {
        display: none !important;
    }
    
    body::before {
        content: "🚫 Impressão não permitida - © 2024 Midia Server";
        display: block !important;
        font-size: 24px;
        text-align: center;
        margin-top: 50vh;
        color: #333;
    }
}

/* Desabilitar seleção de texto com CSS adicional */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* Proteção contra highlight */
::selection {
    background: transparent;
}

::-moz-selection {
    background: transparent;
}

/* Desabilitar outline em elementos focados */
*:focus {
    outline: none !important;
}

/* Proteção adicional contra ferramentas de desenvolvedor */
.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Esconder scrollbars para dificultar inspeção */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8B5CF6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7C3AED;
}

/* Proteção contra zoom */
html {
    -ms-touch-action: pan-x pan-y;
    touch-action: pan-x pan-y;
}

/* Desabilitar zoom em dispositivos móveis */
meta[name="viewport"] {
    content: "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no";
}

/* Proteção contra copy/paste via CSS */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Marca d'água invisível para rastreamento */
body::after {
    content: "© Midia Server - Protegido contra cópia";
    position: fixed;
    top: -9999px;
    left: -9999px;
    opacity: 0;
    font-size: 1px;
    color: transparent;
    z-index: -1;
    pointer-events: none;
}
/* Success Page Styles */
.success-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 2rem;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item i {
    color: #F59E0B;
    font-size: 1.2rem;
}

.info-item span {
    color: white;
    font-weight: 500;
}

/* Responsive success page */
@media (max-width: 768px) {
    .success-icon {
        font-size: 3.5rem;
    }
    
    .success-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .info-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
/* Bible Verse */
.bible-verse {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    text-align: center;
    border-top: 3px solid #8B5CF6;
    margin-top: 0;
}

.bible-verse p {
    font-size: 0.9rem;
    color: #495057;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.bible-verse strong {
    color: #8B5CF6;
    font-weight: 600;
    font-style: normal;
}

@media (max-width: 768px) {
    .bible-verse {
        padding: 15px 10px;
    }
    
    .bible-verse p {
        font-size: 0.8rem;
    }
}
/* Bible Verse Marquee Animation */
.bible-verse-marquee {
    background: linear-gradient(45deg, #8B5CF6, #3B82F6);
    color: white;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 0.9rem;
    font-weight: 500;
    padding-left: 100%;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .marquee-content {
        font-size: 0.8rem;
        animation: marquee 25s linear infinite;
    }
}