/* ============================================
   GLOBALBEVERAGES MALLORCA - CUSTOM STYLES
   ============================================ */

/* === FONTS === */
@font-face {
  font-family: 'TT Rounds Neue';
  src: url('../../fonts/tt_rounds_neue/TT Rounds Neue Trial Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'TT Rounds Neue';
  src: url('../../fonts/tt_rounds_neue/TT Rounds Neue Trial Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'TT Rounds Neue';
  src: url('../../fonts/tt_rounds_neue/TT Rounds Neue Trial Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'TT Rounds Neue';
  src: url('../../fonts/tt_rounds_neue/TT Rounds Neue Trial Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* Apply TT Rounds Neue to all headlines */
h1, h2, h3, h4, h5, h6 {
  font-family: 'TT Rounds Neue', sans-serif;
}

/* Apply TT Rounds Neue to all buttons */
button,
[class*="btn-"] {
  font-family: 'TT Rounds Neue', sans-serif;
}

/* === ROOT VARIABLES === */
:root {
  /* Colors */
  --color-beige: #F5E6D3;
  --color-sky: #87CEEB;
  --color-white: #FFFFFF;
  --color-dark: #2C3E50;
  --color-gold: #D4AF37;
  --color-green: #25D366;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, rgba(135, 206, 235, 0.9) 0%, rgba(245, 230, 211, 0.9) 100%);
  --gradient-dark: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.95) 100%);

  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 0 20px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* === GLOBAL RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-dark);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
}

/* === HEADER === */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 10px 0;
}

.header-main.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 30px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition-smooth);
}

.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 5px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-sky);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  background: transparent;
}

.btn-icon-whatsapp {
  color: var(--color-green);
}

.btn-icon-whatsapp:hover {
  color: #128C7E;
  transform: scale(1.1);
}

.btn-icon-phone {
  color: var(--color-sky);
}

.btn-icon-phone:hover {
  color: #6BB6D6;
  transform: scale(1.1);
}

.btn-icon-mail {
  color: var(--color-gold);
}

.btn-icon-mail:hover {
  color: #C19B2E;
  transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Simple Header for Legal Pages */
.header-simple {
  background: var(--color-white);
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.header-simple .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-simple .logo img {
  height: 60px;
  width: auto;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-dark);
  font-weight: 600;
  transition: var(--transition-fast);
}

.back-home:hover {
  color: var(--color-sky);
  transform: translateX(-5px);
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
  will-change: transform;
  transform: translateZ(0);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.8) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 1000px;
  padding: 20px 20px 40px;
  margin: 0 auto;
  width: 100%;
}

.hero-logo {
  margin-top: -40px;
  margin-bottom: 5px;
}

.hero-logo img {
  height: 280px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.hero-content h1 {
  display: none;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--color-beige);
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.hero-subline {
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 200;
  margin-bottom: 25px;
  line-height: 1.4;
  color: white;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 15px;
  color: var(--color-sky);
  line-height: 1.6;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.hero-text {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.8;
  color: white;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp-large,
.btn-secondary-large,
.btn-form-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-smooth);
  color: white;
  box-shadow: 0 5px 25px rgba(0,0,0,0.15);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

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

.btn-whatsapp-large:hover {
  background: #128C7E;
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
}

.btn-secondary-large {
  background: var(--color-sky);
}

.btn-secondary-large:hover {
  background: #6BB6D6;
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(135, 206, 235, 0.4);
}

.btn-form-large {
  background: var(--color-gold);
}

.btn-form-large:hover {
  background: #C49F2F;
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.4);
}

/* Scroll indicator removed */

/* === SECTIONS === */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-light {
  background: #ffffff;
}

.section-dark {
  position: relative;
  color: var(--color-dark);
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/hero/IMG_2966.JPG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.section-dark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.8) 100%);
  z-index: -1;
}

.section-dark .section-header h2,
.section-dark .section-header p,
.section-dark .section-subtitle {
  color: white;
}

.section-beige {
  background: var(--color-beige);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: inherit;
  text-wrap: balance;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  color: inherit;
  opacity: 0.9;
}

.section-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.section-cta > * {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

/* === CARDS GRID === */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.card {
  background: white;
  border-radius: 15px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border: 2px solid #f0f0f0;
}

.card-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
}

/* === BEER SWIPER === */
.beerSwiper {
  padding: 40px 0 60px;
}

.beer-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.8);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.beer-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  background: rgba(255, 255, 255, 0.75);
}

.beer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.swiper-pagination-bullet {
  background: var(--color-dark);
  opacity: 0.5;
  width: 10px;
  height: 10px;
  margin: 0 5px;
}

.swiper-pagination-bullet-active {
  background: var(--color-gold);
  opacity: 1;
  width: 12px;
  height: 12px;
}

/* Anlässe Section - Background Image */
.section-anlaesse {
  position: relative;
  color: var(--color-dark);
  overflow: hidden;
}

.section-anlaesse::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/hero/69807eef-cf73-4f32-b855-3761e2092af7.JPG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.section-anlaesse::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: -1;
}

/* Kontakt Section - Dark Background */
.section-kontakt {
  background: var(--gradient-dark);
  color: white;
}

@media (max-width: 768px) {
  .section-anlaesse::before {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .section-dark::before {
    background-attachment: scroll;
  }
}

/* === ZAPF SWIPER === */
.zapfSwiper,
.faesserSwiper,
.cateringSwiper {
  border-radius: 20px;
  overflow: hidden;
}

.zapfSwiper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.faesserSwiper img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  background: #ffffff;
}

.cateringSwiper img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  background: #f8f8f8;
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  background: rgba(0,0,0,0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

/* === CONTENT BOX === */
.content-box {
  padding: 20px;
}

.content-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.content-box h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.content-box p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin: 30px 0;
}

.feature-list li {
  font-size: 18px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.checkmark {
  color: var(--color-green);
  font-weight: bold;
  font-size: 24px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-buttons > * {
  flex: 1;
  min-width: 200px;
}

.btn-primary,
.btn-primary-light,
.btn-outline {
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-sky);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #6BB6D6;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(135, 206, 235, 0.4);
}

.btn-primary-light {
  background: white;
  color: var(--color-dark);
  border: none;
}

.btn-primary-light:hover {
  background: var(--color-beige);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn-outline:hover {
  background: var(--color-dark);
  color: white;
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: var(--color-green);
  color: white;
  border: none;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition-smooth);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #1fb855;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-sm {
  padding: 10px 20px !important;
  font-size: 14px !important;
}

/* === FOOD GRID === */
.food-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .food-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.food-card {
  padding: 0;
}

.food-card h4 {
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 15px;
  color: var(--color-dark);
}

.food-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.food-card ul li {
  font-size: 15px;
  font-weight: 200;
  line-height: 1.8;
  color: var(--color-dark);
  padding-left: 20px;
  position: relative;
}

.food-card ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-sky);
  font-weight: 400;
}

/* === OCCASIONS === */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 50px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .occasions-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
  }
}

.occasion-badge {
  background: rgba(245, 230, 211, 0.85);
  color: var(--color-dark);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 200;
  box-shadow: 0 5px 20px rgba(245, 230, 211, 0.3);
  text-align: center;
}

/* === CONTACT CARDS === */
.contact-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 50px 0;
}

.contact-card {
  position: relative;
}

.contact-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 32px;
  transition: var(--transition-smooth);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-card:nth-child(1) a {
  background: linear-gradient(135deg, var(--color-sky) 0%, #6BB6D6 100%);
  color: white;
}

.contact-card:nth-child(1) a:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(135, 206, 235, 0.5);
}

.contact-card:nth-child(2) a {
  background: linear-gradient(135deg, var(--color-gold) 0%, #C19B2E 100%);
  color: white;
}

.contact-card:nth-child(2) a:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.contact-card:nth-child(3) a {
  background: linear-gradient(135deg, var(--color-green) 0%, #128C7E 100%);
  color: white;
}

.contact-card:nth-child(3) a:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.contact-card h3 {
  display: none;
}

.contact-icon {
  font-size: inherit;
}

.contact-highlight {
  text-align: center;
  margin: 40px 0;
}

.contact-highlight p {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-gold);
  font-style: italic;
}

/* === FOOTER === */
.footer {
  background: var(--color-dark);
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 30px;
}

.footer-brand h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-gold);
  letter-spacing: 0.5px;
}

.footer-brand p {
  font-size: 13px;
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  height: 100px;
  width: auto;
  opacity: 0.95;
}

.footer-contact {
  text-align: right;
}

.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 13px;
}

.footer-contact a {
  color: white;
  opacity: 0.85;
  transition: var(--transition-fast);
}

.footer-contact a:hover {
  opacity: 1;
  color: var(--color-sky);
}

.footer-legal {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 12px;
}

.footer-legal a {
  font-size: 12px;
  color: white;
  opacity: 0.7;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--color-gold);
}

.footer-legal span {
  opacity: 0.5;
  font-size: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  font-size: 12px;
  opacity: 0.6;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-logo {
    order: -1;
  }

  .footer-contact,
  .footer-legal {
    text-align: center;
    justify-content: center;
  }
}

/* WhatsApp Float removed */

/* === MODAL === */
body.modal-open {
  overflow: hidden !important;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  z-index: 10000;
  padding: 20px;
  overflow: hidden;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-dialog {
  width: 100%;
  max-width: 900px;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-content {
  background: white;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-height: 98vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  color: #999;
  cursor: pointer;
  transition: var(--transition-fast);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  background: #f0f0f0;
  color: var(--color-dark);
}

.modal-header {
  padding: 40px 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-header h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.modal-header p {
  font-size: 16px;
  color: #666;
}

.modal-body {
  padding: 20px 40px 40px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-dark);
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  transition: var(--transition-fast);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-sky);
  box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.modal-footer {
  text-align: center;
  padding: 20px 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-footer-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 15px;
  width: 100%;
}

.btn-submit,
.btn-cancel {
  border: none;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-submit {
  background: var(--color-sky);
  color: white;
  box-shadow: 0 3px 15px rgba(135, 206, 235, 0.3);
}

.btn-submit:hover {
  background: #6BB6D6;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(135, 206, 235, 0.4);
}

.btn-cancel {
  background: #e0e0e0;
  color: var(--color-dark);
}

.btn-cancel:hover {
  background: #d0d0d0;
  transform: translateY(-2px);
}

.form-privacy {
  font-size: 12px;
  color: #999;
  margin-top: 15px;
}

.form-privacy a {
  color: var(--color-sky);
}

.form-privacy a:hover {
  text-decoration: underline;
}

/* === LEGAL SECTION === */
.legal-section {
  padding: 100px 0;
  background: var(--color-white);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.legal-content h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--color-dark);
}

.legal-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.legal-content h3,
.legal-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  color: var(--color-dark);
}

.legal-content p,
.legal-content ul {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.legal-content ul {
  list-style: disc;
  padding-left: 30px;
}

.legal-content a {
  color: var(--color-sky);
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-note {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  font-size: 14px;
  color: #999;
  font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: none;
    gap: 15px;
  }

  .main-nav.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-actions {
    gap: 10px;
  }

  .btn-whatsapp span:not(svg),
  .btn-phone span:not(svg),
  .btn-whatsapp-large span:not(svg),
  .btn-secondary-large span:not(svg),
  .btn-form-large span:not(svg) {
    display: none;
  }

  .btn-whatsapp,
  .btn-phone,
  .btn-request {
    padding: 10px 15px;
    font-size: 13px;
  }

  .hero-section {
    min-height: 80vh;
  }

  section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-whatsapp-large,
  .btn-secondary-large,
  .btn-form-large {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons,
  .section-cta {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-outline,
  .btn-whatsapp {
    flex: 0 1 auto;
    width: auto;
    padding: 10px 15px;
    font-size: 14px;
    text-align: center;
    justify-content: center;
  }

  .btn-whatsapp .btn-text {
    display: none;
  }

  .btn-whatsapp {
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .btn-whatsapp svg {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .btn-submit,
  .btn-cancel {
    padding: 10px 20px;
    font-size: 14px;
    flex: 1;
  }

  .modal-footer-buttons {
    width: 100%;
    max-width: 400px;
  }

  .modal-dialog {
    margin: 0;
  }

  .modal-header,
  .modal-body {
    padding: 30px 25px;
  }

  .legal-content {
    padding: 25px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
}

/* === PARALLAX EFFECT === */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
}

/* === COOKIE BANNER === */
body.cookie-active {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-banner.show {
  display: flex;
  animation: fadeIn 0.4s ease;
}

.cookie-content {
  max-width: 600px;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  text-align: center;
  animation: slideUp 0.5s ease;
}

.cookie-content p {
  color: var(--color-dark);
  margin: 0 0 25px 0;
  font-size: 15px;
  line-height: 1.7;
}

.cookie-content p strong {
  font-weight: 700;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.cookie-content p a {
  color: var(--color-sky);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 14px 35px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: 'Poppins', sans-serif;
}

.cookie-accept {
  background: var(--color-green);
  color: white;
}

.cookie-accept:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.cookie-essential {
  background: var(--color-dark);
  color: white;
  border: 2px solid var(--color-dark);
}

.cookie-essential:hover {
  background: transparent;
  color: var(--color-dark);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cookie-content {
    padding: 30px 25px;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }
}
