/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #EBE8E1;
}

/* Header */
.header {
    background-color: #4E234D;
    padding: 2rem 1rem;
    text-align: center;
}

.logo-container {
    max-width: 400px;
    margin: 0 auto;
}

.logo {
    width: 80px;
    height: 80px;
    background-color: #613762;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-icon {
    width: 60px;
    height: 60px;
}

.logo-icon2{
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 180px;
    height: 150px;
    margin: 0 auto 1rem;
}

.site-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Main Content */
.main-content {
    flex: 1;
    background-color: #e8e2d4;
    padding: 3rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-container {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

/* Title Section */
.title-section {
    margin-bottom: 2.5rem;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4a9b8e;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: #6ba3a0;
    font-style: italic;
    line-height: 1.3;
}

/* Description */
.description {
    margin-bottom: 3rem;
}

.description-spanish {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: 500;
    font-style: italic;
}

.description-english {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    line-height: 1.5;
}

/* Email Form */
.email-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.email-label {
    display: block;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.email-input {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: white;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:hover {
    border-color: #999;
}

.email-input:focus {
    border-color: #6b2c91;
    box-shadow: 0 0 0 3px rgba(107, 44, 145, 0.1);
}

.email-input:invalid {
    border-color: #e74c3c;
}

.email-input:invalid:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Continue Button */
.continue-button {
    background-color: #3F103F;
    color: white;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 44, 145, 0.3);
    text-decoration: none;
    display: inline-block;
}

.continue-button:hover {
    background-color: #5a2579;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 44, 145, 0.4);
}

.continue-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(107, 44, 145, 0.3);
}

/* Footer */
.footer {
    background-color: #4E234D;
    padding: 2rem 1rem;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 450px;
    margin: 0 auto;
}

.footer-icon {
    width: auto;
    height: auto;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-icon svg {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .description-spanish {
        font-size: 1.1rem;
    }

    .description-english {
        font-size: 0.95rem;
    }

    .continue-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }

    .footer-icons {
        gap: 1.5rem;
    }

    .footer-icon {
        width: 50px;
        height: 50px;
    }

    .footer-icon svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 2rem 1rem;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .continue-button {
        width: 100%;
        padding: 1rem;
    }
}

/* Privacy Policy Styles */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 2px solid #4E234D;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4E234D;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.last-updated {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.policy-content {
    line-height: 1.6;
    color: #333;
}

.intro-section {
    background-color: #f8f6f8;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    border-left: 4px solid #4E234D;
}

.intro-section p {
    font-size: 1.1rem;
    margin: 0;
    text-align: justify;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4E234D;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #6ba3a0;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #613762;
    margin: 1.5rem 0 1rem 0;
}

.policy-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: justify;
}

.policy-section ul,
.policy-section ol {
    margin: 1rem 0 1.5rem 0;
    padding-left: 2rem;
}

.policy-section li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.policy-section li strong {
    color: #4E234D;
    font-weight: 600;
}

.contact-info {
    background-color: #f0f8f7;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #6ba3a0;
}

.contact-info h3 {
    color: #4E234D;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #4E234D;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #6ba3a0;
    text-decoration: underline;
}

/* External links styling */
.policy-section a {
    color: #4E234D;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.policy-section a:hover {
    color: #6ba3a0;
    border-bottom-color: #6ba3a0;
}

/* Responsive adjustments for privacy policy */
@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .intro-section,
    .contact-info {
        padding: 1.5rem;
    }

    .policy-section ul,
    .policy-section ol {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .policy-header {
        padding: 1.5rem 0;
    }

    .policy-header h1 {
        font-size: 1.8rem;
    }

    .intro-section,
    .contact-info {
        padding: 1rem;
    }

    .policy-section {
        padding: 1rem 0;
    }
}