/*
Theme Name: Redactor de Texto
Theme URI: https://redactordetexto.com
Author: Tu Nombre
Author URI: https://tusitio.com
Description: Tema profesional para redacción premium con alma humana
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: redactor-texto
*/

/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #faf9f8;
    color: #1A2A3A;
    line-height: 1.6;
}

/* ===== TIPOGRAFÍA ===== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.texto-dorado {
    color: #C9A96E;
}

/* ===== BOTONES ===== */
.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-dorado {
    background: #C9A96E;
    color: #1A2A3A;
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
}

.btn-dorado:hover {
    background: #b8975a;
    transform: translateY(-3px);
}

.btn-oscuro {
    background: #1A2A3A;
    color: #fff;
}

.btn-oscuro:hover {
    background: #0e1a26;
}

/* ===== HEADER ===== */
header {
    background: #1A2A3A;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: #C9A96E;
}

/* ===== HERO ===== */
.hero {
    background: #1A2A3A;
    padding: 80px 0 100px;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1.1;
}

.hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.2rem;
    max-width: 520px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 110, 0.15);
    color: #C9A96E;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

/* ===== PILARES ===== */
.pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.pilar-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: 16px;
    background: #faf9f8;
    border: 1px solid #f0eeec;
    transition: all 0.3s ease;
}

.pilar-card:hover {
    transform: translateY(-8px);
    border-color: #C9A96E;
    box-shadow: 0 20px 40px rgba(26, 42, 58, 0.06);
}

.pilar-card i {
    font-size: 2.8rem;
    color: #C9A96E;
    margin-bottom: 20px;
}

/* ===== SERVICIOS ===== */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.servicio-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid #f0eeec;
    transition: all 0.3s ease;
    text-align: center;
}

.servicio-card:hover {
    border-color: #C9A96E;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 42, 58, 0.06);
}

.servicio-card .icono {
    font-size: 2.5rem;
    color: #C9A96E;
    margin-bottom: 12px;
}

.servicio-card .precio {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1A2A3A;
    margin: 8px 0 12px;
}

/* ===== FOOTER ===== */
footer {
    background: #0e1a26;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

footer p {
    margin: 4px 0;
}

footer .footer-logo {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}

footer .footer-logo span {
    color: #C9A96E;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .pilares-grid,
    .servicios-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero p {
        margin: 0 auto 32px;
    }
}