/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-display: 'Audiowide', cursive;
    --font-body: 'Roboto', sans-serif;
}


/* Scroll suave */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    background: #f8f9fa;
    color: #333;
}


/* Navbar */

header {
    background: #0d1b2a;
    padding: 15px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

nav .logo img {
    height: 4rem;
}

nav .menu {
    gap: 20px;
}


/* Desktop */

@media(min-width:769px) {
    .menu {
        display: flex;
    }
}

nav .menu a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    padding: 10px 15px;
    border-radius: 5px;
}

nav .menu a:hover {
    color: #ff9800;
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: #fff;
    font-size: 22px;
}


/* Hero - CORREGIDO */

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    background: linear-gradient(135deg, rgba(232, 5, 47, 0.7) 0%, rgba(37, 99, 235, 0.7) 100%), url('img/pexels-tara-winstead-8386440.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-title {
    font-family: 'Audiowide', 'Impact', 'Arial Black', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 3.5rem;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeZoom 1.5s ease forwards;
}

@keyframes fadeZoom {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    background: #ff9800;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn:hover {
    background: #e68900;
    transform: translateY(-2px);
}


/* Servicios */

.servicios {
    padding: 100px 20px;
    text-align: center;
    background: #fff;
}

.servicios h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card i {
    font-size: 40px;
    color: #ff9800;
    margin-bottom: 15px;
}

.card .imege {
    width: -webkit-fill-available;
    height: 20rem;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-demo {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #ff9800;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-demo:hover {
    background: #e68900;
    transform: scale(1.05);
}


/* Beneficios */

.beneficios {
    padding: 100px 20px;
    text-align: center;
    background: #f9f9f9;
}

.beneficios h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: #0d1b2a;
}

.beneficios-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.beneficio {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 260px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.beneficio:hover {
    transform: translateY(-5px);
}

.beneficio i {
    font-size: 40px;
    color: #ff9800;
    margin-bottom: 15px;
}

.beneficio h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #0d1b2a;
}

.beneficio p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}


/* Footer */

footer {
    background: #0d1b2a;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

footer a {
    color: #ff9800;
    text-decoration: none;
}


/* Mobile */

@media(max-width:768px) {
    .menu {
        display: none;
        flex-direction: column;
        background: #0d1b2a;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 20px;
    }
    .menu.open {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    html {
        scroll-padding-top: 70px;
    }
}


/* WhatsApp */

.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 80px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5a;
}

.hero-note {
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
    max-width: 760px;
}

.hero-note ul {
    margin-top: 8px;
    list-style: none;
    padding-left: 0;
    display: block;
}

.hero-note li {
    margin-bottom: 6px;
    padding-left: 22px;
    position: relative;
}

.hero-note li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffb86b;
    font-weight: 700;
    transform: translateY(-2px);
}

.pagos {
    padding: 100px 20px;
    text-align: center;
    background: #f8f9fa;
}

.pagos h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #0d1b2a;
}

.pagos .cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pagos .card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.pagos .card:hover {
    transform: translateY(-5px);
}

.pagos .card i {
    font-size: 40px;
    color: #ff9800;
    margin-bottom: 15px;
}

.logo-pago {
    margin-top: 10px;
    max-width: 120px;
}


/* Caja de aclaración */

.info-box {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 1rem 1.2rem;
    margin-top: 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #212529;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.info-box strong {
    color: #0d6efd;
}

.descripcion-portfolio {
    text-align: center;
    max-width: 700px;
    margin: 10px auto 50px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    padding-bottom: 10px;
}

.porque-web {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background: #f8f9fa;
}

.porque-card {
    max-width: 1000px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.porque-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.porque-card h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.porque-card i {
    color: #007bff;
}

.porque-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.porque-card li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}