/* ========================================
   En Construcción - Styles
   Ivana Moda
======================================== */

:root {
    --rosa: #D4A5A5;
    --rosa-claro: #F5E6E8;
    --rosa-hover: #E8C4C4;
    --negro: #1A1A1A;
    --gris: #666;
    --blanco: #FFF;
    --dorado: #C9A962;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, var(--rosa-claro) 0%, var(--blanco) 50%, var(--rosa-claro) 100%);
    background-attachment: fixed;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Decoración de fondo */
.bg-decoration {
    position: fixed;
    border-radius: 50%;
    background: var(--rosa);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.bg-decoration--1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
}

.bg-decoration--2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

.bg-decoration--3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    opacity: 0.05;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    height: 80px;
    width: auto;
}

.logo-placeholder {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--negro);
    letter-spacing: 2px;
}

.icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 165, 165, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.icon svg {
    width: 50px;
    height: 50px;
    color: var(--rosa);
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--negro);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 span {
    color: var(--rosa);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--gris);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Progress bar */
.progress-wrapper {
    margin-bottom: 2.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gris);
    margin-bottom: 0.5rem;
}

.progress-bar {
    height: 8px;
    background: rgba(212, 165, 165, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar__fill {
    height: 100%;
    width: 10%;
    background: linear-gradient(90deg, var(--rosa), var(--rosa-hover));
    border-radius: 10px;
    animation: progress 2s ease-out;
}

@keyframes progress {
    from { width: 0; }
    to { width: 10%; }
}

/* Newsletter */
.newsletter {
    background: var(--blanco);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.newsletter h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--negro);
}

.newsletter p {
    font-size: 0.9rem;
    color: var(--gris);
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.9rem 1.25rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--rosa);
}

.newsletter-form button {
    padding: 0.9rem 2rem;
    background: var(--negro);
    color: var(--blanco);
    border: none;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Social */
.social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blanco);
    border-radius: 50%;
    color: var(--negro);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.social a:hover {
    background: var(--rosa);
    color: var(--blanco);
    transform: translateY(-3px);
}

.social a.whatsapp {
    background: #25D366;
    color: #fff;
}

.social a.whatsapp:hover {
    background: #20bd5a;
}

.social svg {
    width: 22px;
    height: 22px;
}

/* Contact */
.contact {
    font-size: 0.9rem;
    color: var(--gris);
}

.contact a {
    color: var(--rosa);
    text-decoration: none;
    font-weight: 600;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    color: var(--gris);
}

.footer a {
    color: var(--rosa);
    text-decoration: none;
}

.footer__credits {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--negro);
    border-radius: 8px;
    display: inline-block;
}

.footer__credits-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.footer__credits-link {
    color: var(--rosa);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}

.footer__credits-link:hover {
    text-decoration: underline;
}

.footer__credits-slogan {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}
