/* === VARIABLES === */
:root {
    --bg: #fafafa;
    --surface: #ffffff;
    --surface-2: #f5f0f3;
    --border: #e8dde5;
    --text: #1a1a1a;
    --text-muted: #888;
    --pink: #D63678;
    --pink-hover: #b82d65;
    --pink-dim: rgba(214, 54, 120, 0.1);
    --green: #25D366;
    --green-hover: #1fb855;
    --blue: #2d7aff;
    --radius: 12px;
    --radius-sm: 8px;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }
a { color: var(--pink); text-decoration: none; }
.container { width: 100%; max-width: 620px; margin: 0 auto; padding: 0 20px; }
.pink { color: var(--pink); }

/* === HEADER === */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 26px; }
.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 1px; color: var(--text);
}
.logo-sub { font-size: 10px; color: var(--pink); letter-spacing: 1.5px; text-transform: uppercase; }

.header-call {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: var(--pink); border-radius: 50%;
    color: white; transition: background 0.2s;
}
.header-call:hover { background: var(--pink-hover); }

/* === HERO === */
.hero {
    padding: 56px 0 44px;
    text-align: center;
    background: linear-gradient(160deg, #fff0f6 0%, #fafafa 100%);
    border-bottom: 1px solid var(--border);
}

.hero-badge {
    display: inline-block;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--pink); border: 1px solid var(--pink);
    padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
}

.hero-title {
    font-size: 30px; font-weight: 700; line-height: 1.25;
    margin-bottom: 14px; color: var(--text);
}

.hero-text {
    font-size: 15px; color: var(--text-muted);
    margin-bottom: 28px; max-width: 380px;
    margin-left: auto; margin-right: auto;
}

.hero-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }

/* === BUTTONS === */
.btn {
    display: inline-block; padding: 14px 28px;
    border-radius: var(--radius); font-size: 15px; font-weight: 600;
    border: none; cursor: pointer; transition: all 0.2s; text-align: center;
    font-family: 'Inter', sans-serif;
}

.btn-call {
    background: var(--green); color: white;
    font-size: 17px; padding: 16px 28px; flex: 1.4;
    animation: callPulse 2s ease-in-out 10;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-call:hover { background: var(--green-hover); color: white; }

.btn-reserve { background: var(--pink); color: white; flex: 1; }
.btn-reserve:hover { background: var(--pink-hover); color: white; }

.btn-estimate {
    background: white; color: var(--pink);
    border: 2px solid var(--pink);
    font-size: 14px; padding: 10px 24px; margin-top: 4px;
}
.btn-estimate:hover { background: var(--pink); color: white; }

.btn-whatsapp { background: var(--green); color: white; }
.btn-whatsapp:hover { background: var(--green-hover); color: white; }

.btn-sms { background: var(--blue); color: white; }
.btn-sms:hover { background: #4a90ff; color: white; }

.btn-mail { background: #7c3aed; color: white; }
.btn-mail:hover { background: #6d28d9; color: white; }

.btn-full { width: 100%; }

@keyframes callPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(1.04); }
}

/* === SECTIONS === */
.section-eyebrow {
    text-align: center; font-size: 11px; text-transform: uppercase;
    letter-spacing: 2.5px; color: var(--pink); margin-bottom: 8px;
}
.section-title {
    font-size: 26px; font-weight: 700; text-align: center;
    margin-bottom: 28px; color: var(--text);
}

/* === SERVICES === */
.services { padding: 52px 0; background: var(--surface); }
.services-grid { display: flex; flex-direction: column; gap: 14px; }

.service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--pink);
    border-radius: var(--radius); padding: 22px;
    transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 20px var(--pink-dim); }
.service-icon { font-size: 28px; margin-bottom: 10px; }
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* === ADVANTAGES === */
.advantages { padding: 52px 0; background: var(--surface-2); }
.advantages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.advantage {
    background: white; border-radius: var(--radius);
    border: 1px solid var(--border); padding: 20px; text-align: center;
}
.advantage-icon { font-size: 26px; display: block; margin-bottom: 8px; }
.advantage h3 { font-size: 13px; font-weight: 600; margin-bottom: 4px; color: var(--text); font-family: 'Inter', sans-serif; }
.advantage p { font-size: 12px; color: var(--text-muted); }

/* === REVIEWS === */
.reviews { padding: 52px 0; background: var(--surface); }
.reviews-grid { display: flex; flex-direction: column; gap: 14px; }

.review-card {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px;
}
.review-stars { color: var(--pink); font-size: 16px; margin-bottom: 10px; letter-spacing: 2px; }
.review-card p { font-size: 14px; color: var(--text-muted); font-style: italic; margin-bottom: 10px; line-height: 1.5; }
.review-author { font-size: 12px; color: var(--pink); font-weight: 600; }

/* === RESERVATION === */
.reservation { padding: 52px 0; background: linear-gradient(160deg, #fff0f6 0%, #fafafa 100%); }

.reservation-form {
    background: white; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 22px;
    display: flex; flex-direction: column; gap: 14px;
    box-shadow: 0 4px 24px var(--pink-dim);
}

.form-group { display: flex; flex-direction: column; gap: 5px; position: relative; }
.form-group label {
    font-size: 11px; font-weight: 600; color: var(--pink);
    text-transform: uppercase; letter-spacing: 1px;
}
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 11px 13px;
    font-size: 15px; color: var(--text); font-family: 'Inter', sans-serif;
    transition: border-color 0.2s; -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--pink); }

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px;
}
.form-group textarea { resize: vertical; min-height: 75px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit-buttons { display: flex; flex-direction: column; gap: 10px; }

/* === AUTOCOMPLÉTION === */
.autocomplete-list {
    list-style: none; position: absolute; top: 100%; left: 0; right: 0;
    background: white; border: 1px solid var(--border);
    border-radius: var(--radius-sm); max-height: 180px; overflow-y: auto;
    z-index: 50; display: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.autocomplete-list.active { display: block; }
.autocomplete-list li {
    padding: 10px 13px; font-size: 13px; cursor: pointer;
    border-bottom: 1px solid var(--border); color: var(--text);
}
.autocomplete-list li:last-child { border-bottom: none; }
.autocomplete-list li:hover { background: var(--pink-dim); color: var(--pink); }

/* === FOOTER === */
.footer {
    background: var(--text); color: white;
    padding: 40px 0 100px; text-align: center;
}
.footer .logo-title { color: white; }
.footer .logo-sub { color: var(--pink); }
.footer-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.footer-links a, .footer-links span { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--pink); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.35); }

/* === FLOATING BUTTONS === */
.floating-buttons {
    position: fixed; bottom: 22px; right: 14px;
    display: flex; flex-direction: column; gap: 10px; z-index: 9999;
}
.fab {
    display: flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: transform 0.2s;
}
.fab:active { transform: scale(0.93); }
.fab-whatsapp { background: var(--green); }
.fab-whatsapp:hover { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
.fab-phone { background: var(--pink); }
.fab-phone:hover { box-shadow: 0 4px 20px rgba(214,54,120,0.45); }

/* === RESPONSIVE === */
@media (min-width: 768px) {
    .container { max-width: 700px; }
    .hero-title { font-size: 38px; }
    .services-grid { flex-direction: row; flex-wrap: wrap; }
    .service-card { flex: 1 1 calc(50% - 7px); }
    .advantages-grid { grid-template-columns: repeat(4, 1fr); }
    .reviews-grid { flex-direction: row; }
    .review-card { flex: 1; }
}
