/* amor.detodoenlaweb.com - Styles */

:root {
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --primary-light: #fce4ec;
    --text: #333;
    --text-light: #666;
    --bg: #fff;
    --bg-alt: #f9f9f9;
    --border: #e0e0e0;
    --success: #4caf50;
    --error: #f44336;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-primary {
    background: var(--primary);
}

.btn-secondary {
    background: #666;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 50%, #f48fb1 100%);
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.price-tag {
    margin: 30px 0;
}

.price-tag .price {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary);
}

.price-tag .currency {
    font-size: 24px;
    color: var(--text-light);
}

.guarantee {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* Features */
.features {
    padding: 60px 20px;
    background: var(--bg);
}

.features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary);
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-alt);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

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

/* How it works */
.how-it-works {
    padding: 60px 20px;
    background: var(--bg-alt);
}

.how-it-works h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary);
}

.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    font-size: 28px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-light);
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    padding: 60px 20px;
    background: var(--bg);
}

.testimonials h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary);
}

.testimonial {
    max-width: 700px;
    margin: 0 auto 30px;
    padding: 25px;
    background: var(--primary-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.testimonial p {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 10px;
}

.testimonial span {
    color: var(--text-light);
    font-size: 14px;
}

/* FAQ */
.faq {
    padding: 60px 20px;
    background: var(--bg-alt);
}

.faq h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary);
}

.faq-item {
    max-width: 700px;
    margin: 0 auto 25px;
    padding: 20px;
    background: var(--bg);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.faq-item p {
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn {
    background: white;
    color: var(--primary);
}

.cta-section .btn:hover {
    background: #f5f5f5;
}

/* Form */
.form-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.form-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.form-header p {
    opacity: 0.9;
}

.form-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: var(--bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.section-card {
    background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
    border: 1px solid #f7cddd;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 24px;
}

.section-card h2 {
    color: var(--primary-dark);
    font-size: 22px;
    margin-bottom: 8px;
}

.section-card p {
    color: var(--text-light);
    margin-bottom: 18px;
}

.dynamic-section {
    display: none;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.checkbox-grid label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-grid label:hover {
    border-color: #f3a6c0;
    background: #fff7fa;
}

.checkbox-grid input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.help-text {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
}

/* Result Page */
.result-header {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.result-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.result-box {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: var(--bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.lectura-content {
    line-height: 1.8;
    font-size: 16px;
}

.lectura-content h2 {
    color: var(--primary);
    margin: 25px 0 15px;
    font-size: 20px;
}

.lectura-content h3 {
    color: var(--primary-dark);
    margin: 20px 0 10px;
    font-size: 18px;
}

.lectura-content p {
    margin-bottom: 15px;
}

.result-actions {
    text-align: center;
    margin: 30px 0;
}

.email-sent, .email-note {
    margin-top: 15px;
    color: var(--success);
    font-size: 14px;
}

.thank-you {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-alt);
    border-radius: 12px;
    margin-bottom: 40px;
}

.thank-you h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.thank-you p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.thank-you .btn {
    margin-top: 20px;
}

/* Error Box */
.error-box {
    max-width: 500px;
    margin: 80px auto;
    padding: 30px;
    background: #ffebee;
    border-radius: 12px;
    border-left: 4px solid var(--error);
    text-align: center;
}

.error-box h1 {
    color: var(--error);
    margin-bottom: 15px;
}

.error-detail {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-family: monospace;
    font-size: 14px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

footer p {
    margin: 5px 0;
}

footer .small {
    font-size: 12px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero .subtitle {
        font-size: 16px;
    }
    
    .price-tag .price {
        font-size: 36px;
    }
    
    .features h2,
    .how-it-works h2,
    .testimonials h2,
    .faq h2 {
        font-size: 24px;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .form-container {
        margin: 20px;
        padding: 20px;
    }

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

    .section-card {
        padding: 18px;
    }
}
