:root {
    --azul-imperial: #0A1A4F;
    --dorado-premium: #D4A436;
    --negro-profundo: #0D0D0D;
    --gris-profesional: #9BA1AE;
    --rojo-elite: #B82E2E;
    --blanco: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--negro-profundo);
    color: var(--blanco);
    line-height: 1.6;
}

/* Hero Section */
header {
    background: linear-gradient(135deg, var(--negro-profundo) 0%, var(--azul-imperial) 100%);
    padding: 100px 20px;
    text-align: center;
    border-bottom: 3px solid var(--dorado-premium);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.gold-text {
    color: var(--dorado-premium);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gris-profesional);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-button {
    background-color: var(--rojo-elite);
    color: white;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(184, 46, 46, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: #d43535;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: #121212;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid var(--dorado-premium);
    transition: 0.3s;
}

.card:hover {
    background: #222;
}

.card h3 {
    color: var(--dorado-premium);
    margin-bottom: 15px;
}

/* Form Section */
.contact-section {
    padding: 80px 20px;
    background-color: var(--azul-imperial);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--negro-profundo);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--gris-profesional);
}

input, textarea {
    width: 100%;
    padding: 12px;
    background: #222;
    border: 1px solid #333;
    color: white;
    border-radius: 5px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--dorado-premium);
    border: none;
    color: var(--negro-profundo);
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
}

.submit-btn:hover {
    background: #e5b342;
}

footer {
    text-align: center;
    padding: 40px;
    color: var(--gris-profesional);
    font-size: 0.9rem;
}

.aviso-legal  {
    * {
        background-color: white;
        color: black;
    }

    a {
        color: blue;
    }

    h1 {
    text-align: center;
  }
    h2 {
    text-align: center;
  }
    h3 {
    text-align: center;
    text-decoration: underline;
  }
    h4 {
    text-align: center;
    text-decoration: underline;
  }
    p {
    text-align: justify;
    padding-left: 10%;
    padding-right: 10%;
  }
    ol {
    text-align: justify;
    padding-left: 10%;
    padding-right: 10%;
  }
    ul {
    text-align: justify;
    padding-left: 10%;
    padding-right: 10%;
  }
}

/*Cookie Banner */
.cookie-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50; /* Color oscuro profesional */
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999; /* Por encima de todo */
  font-family: sans-serif;
  font-size: 14px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-container a {
  color: #3498db;
  text-decoration: underline;
}

.cookie-btn {
  background: #25d366; /* Verde similar al de WhatsApp para coherencia */
  border: none;
  color: white;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  margin-left: 20px;
}

.cookie-btn:hover {
  background: #128c7e;
}

/* Para ocultarlo cuando el usuario acepte */
.cookie-container.hidden {
  display: none;
}

/* Botón de Whatsapp */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .float-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
  }

.float-whatsapp i {
  font-size: 35px; /* Ajusta el tamaño del logo */
  line-height: 60px; /* Centra verticalmente si no usas flexbox */
}

.separador {
    height: 15px;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
}
    