:root {
    --naranja: #F28C28;
    --naranja-oscuro: #E85621;
    --gris: #f7f7f7;
    --negro: #222;
    --verde: #25D366;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--negro);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.logo {
    width: 170px;
}

/* HERO */
.hero {
    padding: 60px 0;
    background: var(--gris);
}

h1, h2 {
    color: var(--naranja-oscuro);
}

.hook {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.two-col-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* VIDEO */
.video-wrapper video {
    width: 100%;
    border-radius: 10px;
    background: black;
}

/* LISTAS GENERALES */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li::before {
    content: "✔ ";
    color: var(--naranja);
}

/* LISTA CON CHECKS (QUE HACEMOS) */
.list-check {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.list-check li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    text-align: left;
}

.list-check li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--naranja);
    font-weight: bold;
}

/* BOTONES */
.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-wsp {
    background: var(--verde);
    color: white;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

.btn-outline {
    border: 2px solid var(--naranja);
    color: var(--naranja);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
}

/* SECCIONES */
.section {
    padding: 60px 0;
}

.section.alt {
    background: var(--gris);
}

.center {
    text-align: center;
}

/* CARDS */
.three-col-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    text-align: left;
}

.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 18px;
}

.faq-item.active .faq-answer {
    max-height: 150px;
}

/* CTA */
.cta-final {
    background: var(--naranja);
    color: white;
    text-align: center;
    padding: 60px 0;
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,.3);
}

/* ANIMACIONES */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {

    .two-col-grid {
        grid-template-columns: 1fr;
    }

    .section img {
        max-width: 100%;
    }
	
	h1 {
    text-align: center;
	}

}