:root {
    --warning-red: #dc3545;
    --warning-yellow: #ffc107;
    --warning-dark: #343a40;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Estilos para el logo de Prima */
.logo-container {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    max-width: 200px;
}

.prima-logo {
    width: 100%;
    max-width: 150px;
    height: auto;
}

.cross-out {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--warning-red);
    transform: rotate(-20deg);
    opacity: 0.8;
}

/* Header and titles */
.warning-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--warning-red);
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.section-title {
    color: var(--warning-dark);
    border-bottom: 3px solid var(--warning-yellow);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.timeline-title {
    font-size: 1.4rem;
    color: var(--warning-dark);
}

/* Cards and sections */
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.card-header {
    font-weight: 600;
}

.introduction, .economic-damage, .forced-renewal, .customer-service, .final-warning, .share-experience {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.final-warning {
    background: linear-gradient(135deg, var(--warning-dark) 0%, #212529 100%);
}

.final-warning h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Share buttons */
.share-buttons {
    margin-top: 30px;
}

.share-buttons .btn {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.share-buttons .btn:hover {
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: var(--warning-dark);
    color: #fff;
    font-size: 0.9rem;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .warning-title {
        font-size: 1.8rem;
    }
    
    .final-warning h2 {
        font-size: 1.8rem;
    }
    
    .share-buttons .btn {
        width: 100%;
        margin-right: 0 !important;
    }
}

@media (max-width: 576px) {
    .warning-title {
        font-size: 1.5rem;
    }
    
    .final-warning {
        padding: 1.5rem !important;
    }
    
    .final-warning h2 {
        font-size: 1.5rem;
    }
}

/* Enhanced styles for better emphasis */
.bold-warning {
    font-weight: 700;
    color: var(--warning-red);
}

.timeline .card-header {
    border-left: 5px solid var(--warning-yellow);
}

.experience-form {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

/* Emphasis on key points */
strong {
    color: var(--warning-red);
}

/* Hacer que el texto en negrita dentro de elementos con fondo rojo sea blanco */
.bg-danger strong, 
.text-white strong {
    color: white;
    font-weight: 700;
}

.tagline .badge {
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 30px;
}

/* Estilos para capturas de pantalla de WhatsApp */
.whatsapp-screenshot {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.whatsapp-screenshot:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whatsapp-screenshot img {
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.whatsapp-screenshot a:hover img {
    transform: scale(1.02);
}

.whatsapp-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .whatsapp-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

/* Estilos para el CAPTCHA */
.input-group-text {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}

#captcha_answer {
    font-weight: bold;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 1px;
}
