/* =========================================
   AQUA SPEED - ESTILO INDUSTRIAL
   ========================================= */

:root {
    --primary: #0984e3;
    /* Azul eléctrico */
    --dark: #2d3436;
    --light: #dfe6e9;
    --white: #ffffff;
    --accent: #00cec9;
    /* Cyan para detalles */
    --waze: #33ccff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    padding-bottom: 60px;
}

h1,
h2,
h3 {
    font-family: 'Russo One', sans-serif;
    text-transform: uppercase;
}

a {
    text-decoration: none;
}

/* --- HERO --- */
.hero {
    height: 60vh;
    background-image: url('https://images.unsplash.com/photo-1601362840469-51e4d8d58785?auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
}

.logo-text {
    font-family: 'Russo One';
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.logo-text span {
    color: var(--accent);
}

.hero h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    padding: 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-action:hover {
    transform: scale(1.05);
}

.btn-action.waze {
    background-color: var(--waze);
    color: white;
}

.btn-action.call {
    background-color: var(--white);
    color: var(--dark);
}

.btn-action.google {
    background-color: #4285F4;
    color: white;
    margin-top: 20px;
}

/* --- SECCIONES --- */
.section-container {
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.bg-gray {
    background-color: #b2bec3;
    color: var(--dark);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 4px solid var(--primary);
    display: inline-block;
    padding-bottom: 5px;
}

.section-container h2 {
    display: block;
    text-align: center;
}

/* --- PRECIOS --- */
.pricing-grid {
    display: grid;
    gap: 20px;
}

.price-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid #ccc;
}

.price-card.featured {
    border: 3px solid var(--primary);
    transform: scale(1.02);
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: bold;
    border-bottom-left-radius: 10px;
}

.pc-header {
    background: var(--dark);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pc-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.price {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: bold;
}

.pc-features {
    list-style: none;
    padding: 20px;
}

.pc-features li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.pc-features i {
    color: var(--primary);
}

/* --- EXTRAS --- */
.extras-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.extra-item {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

/* --- UBICACIÓN --- */
.location-section {
    text-align: center;
    background: var(--white);
}

.address {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.map-box {
    width: 100%;
    height: 200px;
    background: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    border-radius: 10px;
    border: 2px dashed #ccc;
}

.map-box i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* --- FOOTER --- */
.footer {
    background: var(--dark);
    color: #aaa;
    text-align: center;
    padding: 30px 20px;
}

.dev-credit {
    font-size: 0.8rem;
    margin-top: 10px;
}

.dev-credit a {
    color: var(--accent);
}

/* --- WHATSAPP --- */
.float-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

/* Responsive */
@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .extras-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .extra-item {
        flex: 1;
    }
}