/* PRINCIPAL */
/* PRINCIPAL */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family:Arial, sans-serif;
  background:#f6f1e8;
  color:#221c17;
}
html{
    scroll-behavior:smooth;
}

header{
    height:75px;
    background:white;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 70px;
    border-bottom:1px solid #ececec;
    position:sticky;
    top:0;
    z-index:999;
}

.logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.logo img{
  height:90px;
  width:auto;
}

.logo img:hover{
  transform:scale(1.05);
}

nav{
    display:flex;
    gap:10px;
}

.dropdown{
    position:relative;
}

.menu-btn{
    background:none;
    border:none;
    color:#111;
    font-size:13px;
    font-weight:bold;
    text-transform:uppercase;
    cursor:pointer;
    padding:12px 14px;
}

.menu-btn:hover{
    color:#7a1f2d;
}

.dropdown-content{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:white;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.dropdown-content a{
    display:block;
    padding:14px 18px;
    text-decoration:none;
    color:#222;
}

.dropdown-content a:hover{
    background:#f5ede4;
    color:#7a1f2d;
}

.dropdown:hover .dropdown-content{
    display:block;
}

.btn-outline{
    background:white;
    border:1px solid #7a1f2d;
    color:#7a1f2d;
    padding:12px 20px;
    border-radius:5px;
}

.hero{

    height:540px;              /* Antes 620px */

    background:
        linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.45)),
        url("imagenes/Portada.png");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    text-align:center;

    padding:40px 25px;

}

.hero-content{
  width:100%;
  max-width:1050px;
  margin:auto;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.hero h1{

    font-family:Georgia, serif;
    font-size:72px;
    line-height:0.95;
    margin-bottom:20px;

}

.hero p{

    font-size:20px;
    margin-bottom:35px;

}

.search{

    width:100%;
    max-width:760px;      /* Antes 950px */

    display:flex;

    background:#fff;

    padding:6px;          /* Antes 8px */

    border-radius:12px;

    box-shadow:0 15px 35px rgba(0,0,0,.22);

    margin-bottom:25px;

}

.search input{

    flex:1;

    border:none;

    outline:none;

    padding:14px 18px;    /* Antes 18px 22px */

    font-size:15px;       /* Antes 16px */

    border-radius:10px 0 0 10px;

}

.search-btn{

    background:#8B1E2D;

    color:white;

    border:none;

    padding:0 28px;       /* Antes 36px */

    font-size:15px;

    font-weight:700;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

}

.search-btn:hover{

    background:#6E1522;

    transform:translateY(-2px);

}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  width:100%;
  max-width:950px;
}

.stat-card{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.30);
  backdrop-filter:blur(8px);
  border-radius:16px;
  padding:22px 18px;
  text-align:left;
  box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.stat-card strong{
  display:block;
  font-family:Georgia, serif;
  font-size:32px;
  color:#f3d28b;
  margin-bottom:6px;
}

.stat-card span{
  display:block;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.8px;
}

@media(max-width:900px){
  .hero{
    min-height:560px;
  }

  .hero h1{
    font-size:44px;
  }

  .search{
    flex-direction:column;
    gap:8px;
  }

  .search input,
  .search-btn{
    width:100%;
    border-radius:10px;
  }

  .hero-stats{
    grid-template-columns:repeat(2,1fr);
  }
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:24px;
  max-width:760px;
}

.stat-card{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(8px);
  border-radius:12px;
  padding:18px 16px;
  color:white;
  box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.stat-card strong{
  display:block;
  font-family:Georgia, serif;
  font-size:28px;
  color:#f3d28b;
  margin-bottom:6px;
}

.stat-card span{
  display:block;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.8px;
}

@media(max-width:900px){
  .hero-stats{
    grid-template-columns:repeat(2,1fr);
  }
}
.map-section{
    display:grid;
    grid-template-columns:1fr 1.1fr 1fr;
    gap:45px;
    align-items:center;
    padding:20px 90px 70px;
}
.label{
  color:#7a1f2d;
  font-weight:bold;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:15px;
}

.map-info h2{
  font-family:Georgia, serif;
  font-size:46px;
  line-height:1.1;
  margin-bottom:25px;
}

.map-info p{
  color:#555;
  line-height:1.7;
  margin-bottom:25px;
}

.map-wrapper{
  position:relative;
  width:100%;
  max-width:430px;
  margin:auto;
}

.map-wrapper img{
  width:100%;
  display:block;
}

.map-btn{
  position:absolute;
  background:rgba(122,31,45,.85);
  color:white;
  text-decoration:none;
  padding:7px 10px;
  border-radius:20px;
  font-size:11px;
  font-weight:bold;
  transform:translate(-50%, -50%);
  transition:.25s;
  box-shadow:0 6px 14px rgba(0,0,0,.25);
}

.map-btn:hover{
  background:#7a1f2d;
  transform:translate(-50%, -50%) scale(1.18);
  z-index:10;
}

.mendoza{ left:35%; top:52%; }
.salta{ left:52%; top:18%; }
.sanjuan{ left:38%; top:42%; }
.cordoba{ left:58%; top:43%; }
.buenosaires{ left:72%; top:60%; }
.rionegro{ left:50%; top:72%; }
.neuquen{ left:34%; top:70%; }
.larioja{ left:45%; top:35%; }

.province-list{
    display:flex;
    flex-direction:column;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.province-list a{
    display:flex;
    flex-direction:column;
    padding:24px 28px;
    text-decoration:none;
    background:#fff;
    border-bottom:1px solid #e7ddd2;
    transition:.30s;
}

.province-list a:last-child{
    border-bottom:none;
}

.province-list a strong{
    font-size:18px;
    font-weight:700;
}

.province-list a span{
    margin-top:6px;
    font-size:15px;
    opacity:.85;
}
/* CUYO */
.province-list .cuyo{
    border-left:8px solid #216a1b;
}

.province-list .cuyo strong{
    color:#216a1b;
}

.province-list .cuyo:hover{
    background:#f3eefc;
}


/* NORTE */
.province-list .norte{
    border-left:8px solid #69b64b;
}

.province-list .norte strong{
    color:#4f9935;
}

.province-list .norte:hover{
    background:#eef8ea;
}


/* CENTRO */
.province-list .centro{
    border-left:8px solid #00f0dc;
}

.province-list .centro strong{
    color:#00d5d5;
}

.province-list .centro:hover{
    background:#fff7e2;
}


/* PATAGONIA */
.province-list .patagonia{
    border-left:8px solid #778189;
}

.province-list .patagonia strong{
    color:#778189;
}

.province-list .patagonia:hover{
    background:#edf7ff;
}


/* EMERGENTES */
.province-list .emergentes{
    border-left:8px solid #8d8d8d;
}

.province-list .emergentes strong{
    color:#666;
}

.province-list .emergentes:hover{
    background:#f5f5f5;
}
/*4*/
.province-list .emergentes{
    border-left:8px solid #de14c3;
}

.province-list .emergentes strong{
    color:#e910bd;
}

.province-list .emergentes:hover{
    background:#f5f5f5;
}
/*5*/
.province-list .emergentes{
    border-left:8px solid #8e16b6;
}

.province-list .emergentes strong{
    color:#8e16b6;
}

.province-list .emergentes:hover{
    background:#f5f5f5;
}
.categories{
  background:white;
  text-align:center;
  padding:45px 80px;
}

.categories h2{
  font-family:Georgia, serif;
  font-size:34px;
  margin-bottom:30px;
}

.category-row{
    width:100%;
    max-width:1200px;

    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(3, 1fr);

    gap:30px;

    align-items:stretch;
}

.category-card{

    position:relative;

    width:100%;
    height:190px;

    border-radius:18px;

    overflow:hidden;

    text-decoration:none;

    color:white;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

    transition:.35s;
}

.category-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:.35s;
}

.category-card::after{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.10),
        rgba(0,0,0,.75)
    );
}

.category-card span{
    position:absolute;

    left:15px;
    bottom:15px;

    z-index:2;

    font-size:16px;
    font-weight:bold;

    font-family:Georgia, serif;
}

.category-card:hover{
    transform:translateY(-5px);
}

.category-card:hover img{
    transform:scale(1.08);
}
@media(max-width:900px){

    .category-row{

        grid-template-columns:1fr;

        gap:20px;
    }

}
.btn-publicar{
    display:flex;
    align-items:center;
    justify-content:center;

    height:42px;
    padding:0 20px;

    background:white;

    border:1px solid #7a1f2d;
    border-radius:6px;

    color:#7a1f2d;
    text-decoration:none;

    font-size:14px;
    font-weight:500;

    white-space:nowrap;

    transition:.3s;
}

.btn-publicar:hover{
    background:#7a1f2d;
    color:white;
}
.bodegas-home{
  padding:70px 80px;
  background:#f6f1e8;
}

.section-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:35px;
}

.section-title h2{
  font-family:Georgia, serif;
  font-size:40px;
  color:#221c17;
}

.section-title a{
  color:#7a1f2d;
  text-decoration:none;
  font-weight:bold;
}

.bodegas-home{
  padding:90px 80px;

  background:linear-gradient(
    135deg,
    #5e1927 0%,
    #6d1a2a 50%,
    #312b2c 100%
  );

  color:white;
}

.bodegas-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:45px;
}

.bodegas-header h2{
  font-family:Georgia, serif;
  font-size:46px;
  margin:10px 0 15px;
}

.bodegas-header p{
  max-width:620px;
  color:#d6d0c8;
  line-height:1.7;
}

.ver-todas-btn{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.25);
  color:white;
}

.ver-todas-btn:hover{
  background:#d4af37;
  border-color:#d4af37;
  color:#221c17;
}

.bodegas-home-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  margin-top:40px;
}

.bodega-home-card{
  position:relative;
  width:100%;
  height:310px;
  min-width:0;
  border-radius:18px;
  overflow:hidden;
  text-decoration:none;
  color:white;
  display:block;
  
}

.bodega-home-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.bodega-home-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(0,0,0,.05),
    rgba(0,0,0,.80)
  );
}

.bodega-home-info{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  z-index:2;
}

.bodega-home-card:hover{
  transform:translateY(-6px);
}

.bodega-home-card:hover img{
  transform:scale(1.06);
}
/* INTERACCIÓN TARJETAS BODEGAS DESTACADAS */

.bodega-home-card{
  transition:.35s ease;
}

.bodega-home-card img{
  transition:.45s ease;
}

.bodega-home-card::after{
  transition:.35s ease;
}

.bodega-home-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,.30);
}

.bodega-home-card:hover img{
  transform:scale(1.10);
}

.bodega-home-card:hover::after{
  background:linear-gradient(
    rgba(122,31,45,.20),
    rgba(122,31,45,.82)
  );
}

.bodega-home-card:hover .bodega-home-info{
  transform:translateY(-6px);
}

.bodega-home-info{
  transition:.35s ease;
}
@media(max-width:1000px){
  .bodegas-home{
    padding:60px 25px;
  }

  .bodegas-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .bodegas-home-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .bodegas-home-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:1000px){
  .bodegas-home{
    padding:50px 25px;
  }

  .bodegas-home-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:1200px){
    .bodegas-home-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .bodegas-home-grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:1000px){
  nav{
    display:none;
  }

  header{
    padding:0 25px;
  }

  .hero{
    padding:40px 25px;
  }

  .hero h1{
    font-size:40px;
  }

  .search{
    width:100%;
  }

  .map-section{
    grid-template-columns:1fr;
    padding:45px 25px;
  }

  .category-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}
/* MENDOZA */
}
.hero-mendoza{
    height:700px;

    background-image:url("provincias/mendoza/Imagenes/Paisaje.jpg");
    background-size:cover;
    background-position:center;

    position:relative;
}

.hero-overlay{
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.65) 0%,
        rgba(0,0,0,.35) 40%,
        rgba(0,0,0,.10) 100%
    );
}

.hero-overlay h1{
    font-size:7rem;
    font-family: Georgia, serif;
    text-shadow:0 8px 30px rgba(0,0,0,.5);
}

.hero-overlay p{
    font-size:1.4rem;
    max-width:700px;
}
.map-wrapper{
  position:relative;
  width:100%;
  max-width:430px;
  margin:auto;
}

.map-wrapper img{
  width:100%;
  display:block;
  border-radius:12px;
  box-shadow:0 15px 35px rgba(0,0,0,.15);
}
.hero-image{
    margin-top:30px;
}

.hero.hero-mendoza{
  height:520px;

  background:
    linear-gradient(
      rgba(0,0,0,.35),
      rgba(0,0,0,.50)
    ),
    url("provincias/mendoza/Imagenes/Paisaje.jpg");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  display:flex;
  align-items:center;
}

.hero.hero-mendoza .hero-content{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.hero.hero-mendoza h1{
  font-size:7rem;
  font-family:Georgia, serif;
  color:white;
}

.hero.hero-mendoza p{
  font-size:1.4rem;
  max-width:700px;
  color:white;
}

.hero-image{
  width:100%;
  height:300px;
  overflow:hidden;
  border-radius:16px;
  margin-top:30px;
  box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
}.bodegas-destacadas{
    padding:70px 40px;
    background:white;
}

.bodegas-destacadas h2{
    text-align:center;
    font-family:Georgia, serif;
    font-size:40px;
    margin-bottom:40px;
}

.bodegas-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.bodega-card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    text-decoration:none;
    color:#222;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.bodega-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.bodega-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.bodega-info{
    padding:20px;
}

.bodega-info h3{
    margin-bottom:8px;
    font-size:22px;
}

.bodega-info p{
    color:#777;
}
.hero-image{
    width:100%;
    height:300px;
    overflow:hidden;
    border-radius:16px;
    margin-top:30px;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
}
.hero-salta{
    background:#f6f1e8;
    color:#221c17;
    padding:60px 0;
}
.experiencias-section{
  padding:70px 40px;
  background:#f6f1e8;
}

.experiencias-section h2{
  text-align:center;
  font-family:Georgia, serif;
  font-size:40px;
  margin-bottom:40px;
}

.experiencias-grid{
  width:100%;
  max-width:1180px;
  margin:50px auto 0;

  display:flex;
  justify-content:center;
  align-items:stretch;

  gap:24px;
  flex-wrap:nowrap;
}

.experiencia-card{
  position:relative;

  flex:1 1 0;
  min-width:0;
  max-width:360px;
  height:180px;

  display:block;

  border-radius:16px;
  overflow:hidden;

  text-decoration:none;
  color:white;

  box-shadow:0 10px 25px rgba(0,0,0,.14);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.experiencia-card img{
  width:100%;
  height:100%;

  object-fit:cover;
  display:block;

  transition:transform .4s ease;
}

.experiencia-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;

  background:linear-gradient(
    to top,
    rgba(35,12,17,.88) 0%,
    rgba(35,12,17,.35) 50%,
    rgba(0,0,0,.05) 100%
  );

  transition:background .3s ease;
}

.experiencia-card h3{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:2;

  margin:0;

  font-family:Georgia, serif;
  font-size:20px;
  line-height:1.2;
  color:white;
}

.experiencia-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 35px rgba(0,0,0,.22);
}

.experiencia-card:hover img{
  transform:scale(1.08);
}

.experiencia-card:hover::after{
  background:linear-gradient(
    to top,
    rgba(122,31,45,.92) 0%,
    rgba(122,31,45,.42) 50%,
    rgba(0,0,0,.05) 100%
  );
}
@media(max-width:1100px){
  .experiencias-grid{
    overflow-x:auto;
    justify-content:flex-start;
    padding-bottom:10px;
  }

  .experiencia-card{
    flex:0 0 300px;
  }
}
/*=========================
   REGIONES MENDOZA
=========================*/

.province-list{
    max-width:360px;   /* Antes 460px */
    border-radius:18px;
}

.region-card{
    display:block;
    text-decoration:none;
    padding:22px 28px;
    border-left:10px solid;
    transition:.35s;
    border-bottom:1px solid #ececec;
}

.region-card:last-child{
    border-bottom:none;
}

.region-card h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:8px;
    transition:.3s;
}

.region-card p{
    font-size:20px;
    font-weight:500;
    transition:.3s;
}

/* Hover general */

.region-card{
    display:block;
    text-decoration:none;

    padding:16px 22px;      /* Antes 22px 28px */

    border-left:8px solid;
    border-bottom:1px solid #ececec;

    transition:.30s;
}

.region-card:last-child{
    border-bottom:none;
}

.region-card h3{
    font-size:22px;         /* Antes 30px */
    font-weight:700;
    margin-bottom:4px;
}

.region-card p{
    font-size:15px;         /* Antes 20px */
    font-weight:500;
    opacity:.85;
}

.region-card:hover{
    transform:translateX(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,.12);
}

/*=========================
   VALLE DE UCO
=========================*/

.valle-uco{
    border-left-color:#6FAE39;
    background:#F3FBEA;
}

.valle-uco h3,
.valle-uco p{
    color:#5F9832;
}

.valle-uco:hover{
    background:#DFF2CB;
}

/*=========================
   PRIMERA ZONA
=========================*/

.primera-zona{
    border-left-color:#B44657;
    background:#FDF0F2;
}

.primera-zona h3,
.primera-zona p{
    color:#A53D4D;
}

.primera-zona:hover{
    background:#F8DADF;
}

/*=========================
   MAIPÚ
=========================*/

.maipu{
    border-left-color:#3E9EA2;
    background:#EDF9F8;
}

.maipu h3,
.maipu p{
    color:#2F8C8F;
}

.maipu:hover{
    background:#D7F2F2;
}

/*=========================
   ESTE
=========================*/

.este{
    border-left-color:#2F78C7;
    background:#EDF5FD;
}

.este h3,
.este p{
    color:#2B6FB8;
}

.este:hover{
    background:#D8E9FB;
}

/*=========================
   ZONA ALTA
=========================*/

.zona-alta{
    border-left-color:#7B58B8;
    background:#F3EEFC;
}

.zona-alta h3,
.zona-alta p{
    color:#6B47A8;
}

.zona-alta:hover{
    background:#E7DAF9;
}

/*=========================
   SUR
=========================*/

.sur{
    border-left-color:#EC7A18;
    background:#FFF4E8;
}

.sur h3,
.sur p{
    color:#D96A0F;
}

.sur:hover{
    background:#FFE2C7;
}

@media(max-width:900px){
  .experiencias-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
/* CORDOBA */
.hero.hero-cordoba{
  height:520px;

  background:
    linear-gradient(
      rgba(0,0,0,.35),
      rgba(0,0,0,.50)
    ),
    url("provincias/cordoba/Imagenes/Fondo.jpg");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  display:flex;
  align-items:center;
}
.hero.hero-cordoba .hero-content{
  width:90%;
  max-width:1200px;
  margin:auto;
  color:white;
}

.hero.hero-cordoba h1{
  font-size:72px;
  font-family:Georgia, serif;
  margin-bottom:15px;
  color:white;
}

.hero.hero-cordoba p{
  font-size:24px;
  color:white;
  max-width:700px;
  line-height:1.5;
}
.hero-bodega{
    height:400px;
    background:url("provincias/cordoba/bodegas/Imagenes/La-Caroyense.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.hero-bodega-info{
    width:90%;
    max-width:1200px;
    margin:auto;
    color:rgb(0, 0, 0);
}

.hero-bodega-info h1{
    font-size:60px;
}

.detalle-bodega{
    max-width:1200px;
    margin:0 auto;
    padding:0 30px 30px;
}

.detalle-bodega img{
    width:100%;
    height:420px;
    object-fit:cover;
    object-position:center;
    display:block;
    margin:0 auto;
    border-radius:12px;
}
.detalle-bodega{
    max-width:1200px;
    margin:50px auto;
    padding:0 30px;
}

.bodega-portada{
    margin-bottom:35px;
}

.bodega-portada img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:16px;
    display:block;

    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.bodega-contenido{
    background:white;
    padding:40px;
    border-radius:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.etiqueta-bodega{
    background:#7a1f2d;
    color:white;
    padding:8px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
    text-transform:uppercase;
}

.bodega-contenido h2{
    margin-top:20px;
    margin-bottom:10px;

    font-size:42px;
    font-family:Georgia, serif;
    color:#221c17;
}

.ubicacion{
    color:#777;
    margin-bottom:30px;
}

.descripcion-bodega h3{
    color:#7a1f2d;
    margin-bottom:20px;
    font-size:26px;
}

.descripcion-bodega p{
    line-height:1.9;
    margin-bottom:20px;
    color:#444;
}
.servicios-bodega{
    padding:70px 40px;
    background:#f6f1e8;
}

.servicios-bodega h2{
    text-align:center;
    font-family:Georgia, serif;
    font-size:42px;
    color:#221c17;
    margin-bottom:45px;
}

/* =========================
   EXPERIENCIAS ELEGANTES
========================= */

/* ===========================
   EXPERIENCIAS
=========================== */

.servicios-bodega{
    padding:55px 40px;
    background:#f6f1e8;
}

.servicios-bodega h2{
    text-align:center;
    font-family:Georgia, serif;
    font-size:38px;
    color:#221c17;
    margin-bottom:35px;
}

/* Grid de las 4 experiencias */

.servicios-grid{
    width:100%;
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

/* Card */

.servicio-card{
    border-radius:16px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.10);
    transition:.30s;
}

.servicio-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.servicio-card img{
    width:100%;
    height:170px;
    object-fit:cover;
}

.servicio-info{
    padding:18px;
}

.servicio-info h3{
    font-size:22px;
    margin-bottom:10px;
}

.servicio-info p{
    font-size:15px;
    line-height:1.5;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:1100px){

    .servicios-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:700px){

    .servicios-grid{
        grid-template-columns:1fr;
    }

}
.hero-degustacion{
    height:400px;
    background:url("provincias/cordoba/bodegas/Imagenes/La-Caroyense.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.hero-degustacion-content{
    width:90%;
    max-width:1200px;
    margin:auto;
    color:white;
}

.hero-degustacion-content h1{
    font-family:Georgia, serif;
    font-size:72px;
    margin-bottom:15px;
}

.hero-degustacion-content p{
    font-size:22px;
    max-width:700px;
    line-height:1.6;
}
.todas-bodegas{
  padding:80px 70px;
  background:#f6f1e8;
}

.todas-bodegas-header{
  text-align:center;
  margin-bottom:35px;
}

.todas-bodegas-header h2{
  font-family:Georgia, serif;
  font-size:42px;
}

.filtros-bodegas{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-bottom:35px;
  flex-wrap:wrap;
}

.filtros-bodegas button{
  border:1px solid #7a1f2d;
  background:white;
  color:#7a1f2d;
  padding:10px 18px;
  border-radius:25px;
  cursor:pointer;
  font-weight:bold;
}

.filtros-bodegas button:hover{
  background:#7a1f2d;
  color:white;
}

.bodegas-listado{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.bodega-list-card{
  background:white;
  padding:24px;
  border-radius:14px;
  text-decoration:none;
  color:#221c17;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
  transition:.3s;
}

.bodega-list-card:hover{
  transform:translateY(-5px);
  box-shadow:0 14px 30px rgba(0,0,0,.14);
}

.bodega-list-card h3{
  color:#7a1f2d;
  margin-bottom:8px;
}

.bodega-list-card p{
  color:#666;
  margin-bottom:14px;
}

.bodega-list-card span{
  font-weight:bold;
  color:#7a1f2d;
}

/* CONTENIDO */

.detalle-degustacion{
    max-width:1200px;
    margin:70px auto;
    padding:0 30px;
}

.detalle-degustacion h2{
    font-family:Georgia, serif;
    font-size:42px;
    color:#221c17;
    margin-bottom:20px;
}

.detalle-degustacion p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}


/* TARJETAS */

.degustacion-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:40px;
}

.degustacion-card{
    background:white;
    border-radius:14px;
    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;
}

.degustacion-card:hover{
    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.degustacion-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.degustacion-info{
    padding:20px;
}

.degustacion-info h3{
    color:#7a1f2d;
    margin-bottom:10px;
    font-size:22px;
}

.degustacion-info p{
    color:#666;
    line-height:1.6;
    margin:0;
}


/* RESERVAS */

.info-reserva{
    max-width:1200px;
    margin:70px auto;
    padding:0 30px;
}

.info-reserva h2{
    font-family:Georgia, serif;
    font-size:40px;
    color:#221c17;
    margin-bottom:25px;
}

.reserva-card{
    background:white;

    padding:30px;

    border-radius:14px;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.reserva-card div{
    text-align:center;
    font-size:18px;
}

.reserva-card strong{
    display:block;
    color:#7a1f2d;
    margin-bottom:10px;
}


/* RESPONSIVE */

@media(max-width:900px){

    .hero-degustacion-content h1{
        font-size:52px;
    }

    .reserva-card{
        grid-template-columns:1fr;
    }

}
.hero-image{
    position:relative;

    width:100%;
    height:450px;

    overflow:hidden;
    border-radius:16px;

    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.hero-image img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center center;

    display:block;
}
.hero-overlay{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
      linear-gradient(
        rgba(0,0,0,.30),
        rgba(0,0,0,.55)
      );

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding-left:80px;

    color:white;
}

.hero-overlay h1{
    font-family:Georgia, serif;
    font-size:72px;
    margin-bottom:15px;
}

.hero-overlay p{
    max-width:700px;
    font-size:22px;
    line-height:1.6;
}
/* VISITA GUIADA */
.hero-visitas{
    margin-top:30px;
}

.hero-image{
    position:relative;
    width:100%;
    height:450px;
    overflow:hidden;
    border-radius:16px;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
      linear-gradient(
        rgba(0,0,0,.25),
        rgba(0,0,0,.55)
      );

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding-left:80px;
    color:white;
}

.hero-overlay h1{
    font-size:72px;
    font-family:Georgia, serif;
    margin-bottom:15px;
}

.hero-overlay p{
    font-size:22px;
    max-width:700px;
}

.detalle-visitas{
    max-width:1200px;
    margin:60px auto;
    padding:0 30px;
}

.detalle-visitas h2{
    font-size:42px;
    font-family:Georgia, serif;
    margin-bottom:20px;
}

.visitas-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.visita-card{
    background:white;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.visita-card:hover{
    transform:translateY(-5px);
}

.visita-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.visita-info{
    padding:20px;
}

.visita-info h3{
    color:#7a1f2d;
    margin-bottom:10px;
}

.info-visitas{
    max-width:1200px;
    margin:60px auto;
    padding:0 30px;
}
/* EVENTOS */
.hero-eventos{
    margin-top:30px;
}

.hero-image{
    position:relative;
    width:100%;
    height:450px;
    overflow:hidden;
    border-radius:16px;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.25),
        rgba(0,0,0,.60)
    );
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding-left:80px;
    color:white;
}

.hero-overlay h1{
    font-size:72px;
    font-family:Georgia, serif;
    margin-bottom:15px;
}

.hero-overlay p{
    font-size:22px;
    max-width:700px;
    line-height:1.6;
}

.detalle-eventos,
.info-eventos{
    max-width:1200px;
    margin:60px auto;
    padding:0 30px;
}

.detalle-eventos h2,
.info-eventos h2{
    font-size:42px;
    font-family:Georgia, serif;
    margin-bottom:20px;
    color:#221c17;
}

.detalle-eventos p{
    color:#555;
    line-height:1.8;
}

.eventos-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.evento-card{
    background:white;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.evento-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.evento-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.evento-info{
    padding:20px;
}

.evento-info h3{
    color:#7a1f2d;
    margin-bottom:10px;
}

.evento-info p{
    color:#666;
    line-height:1.6;
}

.reserva-card{
    background:white;
    padding:30px;
    border-radius:14px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.reserva-card div{
    text-align:center;
    font-size:18px;
}

.reserva-card strong{
    display:block;
    color:#7a1f2d;
    margin-bottom:10px;
}

@media(max-width:900px){
    .hero-overlay{
        padding:30px;
    }

    .hero-overlay h1{
        font-size:48px;
    }

    .eventos-grid,
    .reserva-card{
        grid-template-columns:1fr;
    }
}
.menu-btn {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
/* FOOTER BODEGAR */

.footer-bodegar{
    width:100%;
    background:linear-gradient(180deg,#5a0b1c,#3b0713);
    color:white;
    margin-top:60px;
}

.footer-bodegar-container{
    max-width:1400px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;

    gap:65px;

    align-items:flex-start;

    padding:40px 45px 28px;
}

.footer-bodegar-logo{
    width:210px;
    height:auto;
    display:block;
    margin-bottom:6px;
}

.footer-bodegar p{
    font-size:15px;
    line-height:1.5;
    color:#eee;
    max-width:300px;
    margin-top:4px;
}

.footer-brand h2{
    font-family: -apple-system,
                 BlinkMacSystemFont,
                 "SF Pro Display",
                 "Helvetica Neue",
                 Arial,
                 sans-serif;

    font-size:36px;
    font-weight:700;
    line-height:1.05;
    letter-spacing:-1px;
    color:#ffffff;
}

.footer-brand h2 span{
    display:block;
    color:#d4af37;
    font-size:40px;
    font-weight:800;
    letter-spacing:-1px;
}

.footer-bodegar a{
    display:block;
    color:white;
    text-decoration:none;
    font-size:15px;
    margin-bottom:8px;
}
.footer-bodegar-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    padding:10px 45px;
    font-size:13px;
    color:#ddd;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* ===========================
   HERO - TERRA CAMIARE
=========================== */

.hero-terra-camiare{
    height:650px;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.65) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.15) 100%
        ),
        url("Imagenes/Terra-Camiare.jpg");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
}

.hero-bodega-info{
    width:90%;
    max-width:1200px;
    margin:auto;
    color:white;
}

.hero-bodega-info h1{
    font-family:Georgia, serif;
    font-size:72px;
    margin-bottom:20px;
    line-height:1.05;
    text-shadow:0 5px 20px rgba(0,0,0,.45);
}

.hero-bodega-info p{
    font-size:24px;
    max-width:700px;
    line-height:1.6;
    text-shadow:0 3px 10px rgba(0,0,0,.40);
}

/* Responsive */

@media(max-width:900px){

    .hero-terra-camiare{
        height:500px;
    }

    .hero-bodega-info h1{
        font-size:50px;
    }

    .hero-bodega-info p{
        font-size:19px;
    }

}
/*Terra Camiare*/
.hero-bodega-premium{
    height:650px;
    position:relative;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:flex-end;
}

.hero-terra-camiare{
    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.75) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.10) 100%
        ),
        url("Imagenes/Terra-Camiare.jpg");
}

.hero-bodega-overlay{
    width:100%;
}

.hero-bodega-content{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding-bottom:75px;
    color:white;
}

.hero-etiqueta{
    display:inline-block;
    background:#7a1f2d;
    color:white;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:.8px;
    margin-bottom:25px;
}

.hero-bodega-content h1{
    font-family:Georgia, serif;
    font-size:78px;
    line-height:1;
    margin-bottom:22px;
    text-shadow:0 8px 30px rgba(0,0,0,.55);
}

.hero-bodega-content p{
    max-width:700px;
    font-size:24px;
    line-height:1.6;
    text-shadow:0 4px 18px rgba(0,0,0,.55);
}

.hero-bodega-datos{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:30px;
}

.hero-bodega-datos div{
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.28);
    backdrop-filter:blur(8px);
    padding:12px 18px;
    border-radius:30px;
    font-size:15px;
}

@media(max-width:900px){
    .hero-bodega-premium{
        height:520px;
    }

    .hero-bodega-content h1{
        font-size:52px;
    }

    .hero-bodega-content p{
        font-size:19px;
    }
}
.hero-la-caroyense{
    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.75) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.10) 100%
        ),
        url("provincias/cordoba/bodegas/Imagenes/La-Caroyense.png");
}
.hero-colome{
    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.75) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.12) 100%
        ),
        url("provincias/salta/bodegas/Imagenes/portada-colome-2.jpg");
}

.hero-zuccardi{
    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.75) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.12) 100%
        ),
        url("provincias/mendoza/Imagenes/Bodega-Zuccardi-Valle-de-Uco.jpg");
}
.hero-callia{
    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.75) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.12) 100%
        ),
        url("provincias/san-juan/bodegas/Imagenes/Callia.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.hero-la-riojana{
    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.75) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.12) 100%
        ),
        url("provincias/la-rioja/bodegas/Imagenes/498528428.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.hero-familia-schroeder{
    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.75) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.12) 100%
        ),
        url("provincias/patagonia/bodegas/Imagenes/Familia Schroeder.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
/*==========================
      VER MÁS BODEGAS
==========================*/

.ver-mas-bodegas{

    max-width:1200px;
    margin:20px auto 35px;
    padding:18px 30px;

    background:#f6f1ea;

    border-radius:20px;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.ver-mas-contenido{

    display:flex;
    justify-content:center;
    align-items:center;

}

.btn-ver-mas{

    display:flex;
    align-items:center;
    gap:12px;

    padding:16px 40px;

    background:#fff;

    color:#6d1a2a;

    text-decoration:none;

    border-radius:50px;

    font-size:22px;

    font-weight:700;

    transition:.30s;

}

.btn-ver-mas:hover{

    background:#6d1a2a;
    color:#fff;

}

.btn-ver-mas span{

    font-size:28px;

}
.banner-publicitario {
    width: min(1180px, calc(100% - 40px));
    min-height: 230px;
    margin: 25px auto 15px;
    display: grid;
    grid-template-columns: 38% 1fr 170px;
    align-items: stretch;
    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            rgba(35, 15, 22, 0.98),
            rgba(82, 28, 45, 0.96)
        );

    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 18px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.18);

    position: relative;
}

.banner-publicitario::before {
    content: "";
    position: absolute;
    top: 0;
    left: 38%;
    width: 90px;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(35, 15, 22, 0.95)
    );

    transform: translateX(-100%);
    pointer-events: none;
}

.banner-publicitario__imagen {
    width: 100%;
    min-height: 230px;
    overflow: hidden;
}

.banner-publicitario__imagen img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.banner-publicitario:hover .banner-publicitario__imagen img {
    transform: scale(1.04);
    filter: brightness(0.9);
}

.banner-publicitario__contenido {
    padding: 32px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.banner-publicitario__etiqueta {
    width: fit-content;
    margin-bottom: 12px;
    padding: 5px 11px;

    color: #f6e8b5;
    background: rgba(212, 175, 55, 0.14);

    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.banner-publicitario__contenido h2 {
    margin: 0 0 12px;

    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(25px, 3vw, 38px);
    font-weight: 500;
    line-height: 1.15;
}

.banner-publicitario__contenido p {
    max-width: 620px;
    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.65;
}

.banner-publicitario__boton {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 24px;

    color: #261018;
    background: #d4af37;

    border: 1px solid #d4af37;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.banner-publicitario__boton:hover {
    color: #ffffff;
    background: transparent;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.2);
}

.banner-publicitario__logo {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.06);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-publicitario__logo img {
    width: 100%;
    max-width: 120px;
    max-height: 100px;

    object-fit: contain;
    display: block;
}

/* Tablets */

@media (max-width: 900px) {
    .banner-publicitario {
        grid-template-columns: 35% 1fr;
    }

    .banner-publicitario__logo {
        display: none;
    }

    .banner-publicitario::before {
        left: 35%;
    }

    .banner-publicitario__contenido {
        padding: 28px;
    }
}

/* Celulares */

@media (max-width: 650px) {
    .banner-publicitario {
        width: min(94%, 520px);
        grid-template-columns: 1fr;
        border-radius: 15px;
    }

    .banner-publicitario::before {
        display: none;
    }

    .banner-publicitario__imagen {
        height: 210px;
        min-height: 210px;
    }

    .banner-publicitario__imagen img {
        height: 210px;
        min-height: 210px;
    }

    .banner-publicitario__contenido {
        padding: 26px 22px 30px;
        text-align: center;
        align-items: center;
    }

    .banner-publicitario__contenido h2 {
        font-size: 27px;
    }

    .banner-publicitario__contenido p {
        font-size: 14px;
    }

    .banner-publicitario__boton {
        width: 100%;
        max-width: 280px;
    }
}
/*==========================
      AUSPICIANTES
==========================*/

.footer-auspicia h3{
    margin-bottom:22px;
    text-align:center;
}

.logos-auspiciantes{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    align-items:center;
    justify-items:center;
    margin-top:20px;
}

.logos-auspiciantes a{
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
}

.logos-auspiciantes img{
    width:100%;
    max-width:300px;
    max-height:150px;
    object-fit:contain;

    opacity:.92;
    filter:brightness(1.05);

    transition:
        transform .30s ease,
        opacity .30s ease,
        filter .30s ease;
}

.logos-auspiciantes img:hover{
    transform:scale(1.08);
    opacity:1;
    filter:brightness(1.18);
}

/* ==========================================================
   AJUSTES RESPONSIVE GENERALES — BodegAR
   Mantiene la misma identidad visual en escritorio y celular
   ========================================================== */

html {
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

img,
picture,
video,
iframe,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

section {
  min-width: 0;
}

/* Contenedores principales fluidos */
.hero-content,
.bodegas-header,
.bodegas-home-grid,
.category-row,
.map-section,
.footer-bodegar-container,
.detalle-bodega,
.detalle-degustacion,
.detalle-visitas,
.detalle-eventos,
.info-eventos,
.info-visitas,
.info-reserva,
.servicios-grid,
.experiencias-grid {
  width: min(100%, 1200px);
  margin-left: auto;
  margin-right: auto;
}

/* Tipografía escalable */
.hero h1,
.hero-overlay h1,
.hero-bodega-info h1,
.hero-bodega-content h1,
.hero-degustacion-content h1,
.hero.hero-cordoba h1,
.hero.hero-mendoza h1 {
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  overflow-wrap: anywhere;
}

.hero p,
.hero-overlay p,
.hero-bodega-info p,
.hero-bodega-content p,
.hero-degustacion-content p,
.hero.hero-cordoba p,
.hero.hero-mendoza p {
  font-size: clamp(1rem, 2vw, 1.4rem);
}

/* Escritorio medio y tablets */
@media (max-width: 1100px) {
  header {
    height: auto;
    min-height: 74px;
    padding: 8px 24px;
    gap: 15px;
  }

  .logo img {
    height: 72px;
  }

  nav {
    gap: 2px;
  }

  .menu-btn {
    padding: 10px 8px;
    font-size: 11px;
  }

  .btn-publicar {
    padding: 0 12px;
    font-size: 12px;
  }

  .map-section {
    grid-template-columns: 1fr 1fr;
    padding: 55px 30px;
  }

  .province-list {
    max-width: none;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .province-list a {
    border-bottom: 1px solid #e7ddd2;
  }

  .footer-bodegar-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
  }
}

/* Tablets y celulares */
@media (max-width: 900px) {
  header {
    position: sticky;
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 18px 12px;
  }

  .logo {
    flex: 1 1 auto;
  }

  .logo img {
    height: 65px;
  }

  nav {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    padding-top: 5px;
  }

  .dropdown-content {
    position: fixed;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: min(92vw, 360px);
    z-index: 1200;
  }

  .btn-publicar {
    height: auto;
    min-height: 40px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .hero,
  .hero.hero-mendoza,
  .hero.hero-cordoba,
  .hero-terra-camiare,
  .hero-bodega-premium,
  .hero-bodega,
  .hero-degustacion {
    height: auto;
    min-height: 500px;
    padding: 60px 22px;
    background-position: center;
  }

  .hero-content,
  .hero-bodega-info,
  .hero-bodega-content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-bodega-content {
    padding-bottom: 20px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 650px;
  }

  .categories,
  .bodegas-home,
  .bodegas-destacadas,
  .experiencias-section,
  .servicios-bodega,
  .todas-bodegas {
    padding-left: 24px;
    padding-right: 24px;
  }

  .category-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bodegas-home-grid,
  .bodegas-grid,
  .servicios-grid,
  .visitas-grid,
  .eventos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-info {
    text-align: center;
  }

  .map-wrapper {
    max-width: 420px;
  }

  .hero-image {
    height: 360px;
  }

  .hero-overlay {
    padding: 30px;
  }

  .bodega-portada img,
  .detalle-bodega img {
    height: clamp(260px, 55vw, 420px);
  }
}

/* Celulares */
@media (max-width: 650px) {
  header {
    align-items: center;
  }

  .logo {
    justify-content: center;
    width: 100%;
  }

  .logo img {
    height: 62px;
  }

  .btn-publicar {
    width: min(100%, 330px);
  }

  nav {
    gap: 2px;
  }

  .menu-btn {
    font-size: 10px;
    padding: 8px 7px;
  }

  .hero,
  .hero.hero-mendoza,
  .hero.hero-cordoba,
  .hero-terra-camiare,
  .hero-bodega-premium,
  .hero-bodega,
  .hero-degustacion {
    min-height: 460px;
    padding: 48px 18px;
  }

  .hero-description,
  .hero-subtitle {
    max-width: 100%;
  }

  .search {
    flex-direction: column;
    gap: 8px;
    padding: 7px;
  }

  .search input,
  .search-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 9px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .stat-card {
    padding: 14px 10px;
    text-align: center;
  }

  .stat-card strong {
    font-size: 24px;
  }

  .stat-card span {
    font-size: 10px;
    letter-spacing: .4px;
  }

  .categories,
  .bodegas-home,
  .bodegas-destacadas,
  .experiencias-section,
  .servicios-bodega,
  .todas-bodegas {
    padding: 45px 16px;
  }

  .category-row,
  .bodegas-home-grid,
  .bodegas-grid,
  .servicios-grid,
  .visitas-grid,
  .eventos-grid,
  .degustacion-grid,
  .reserva-card {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: 210px;
  }

  .bodega-home-card {
    height: 300px;
  }

  .bodegas-header {
    align-items: flex-start;
  }

  .bodegas-header h2,
  .map-info h2,
  .section-title h2,
  .bodegas-destacadas h2,
  .experiencias-section h2,
  .servicios-bodega h2,
  .detalle-bodega h2,
  .detalle-degustacion h2,
  .detalle-visitas h2,
  .detalle-eventos h2,
  .info-eventos h2 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .map-section {
    padding: 45px 16px;
  }

  .province-list {
    display: flex;
    flex-direction: column;
  }

  .province-list a,
  .region-card {
    padding: 16px 18px;
  }

  .experiencias-grid {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-bottom: 12px;
  }

  .experiencia-card {
    flex: 0 0 84%;
    max-width: 320px;
    scroll-snap-align: center;
  }

  .hero-image {
    height: 300px;
    border-radius: 12px;
  }

  .hero-overlay {
    padding: 22px;
    text-align: left;
  }

  .detalle-bodega,
  .detalle-degustacion,
  .detalle-visitas,
  .detalle-eventos,
  .info-eventos,
  .info-visitas,
  .info-reserva {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bodega-contenido {
    padding: 24px 18px;
  }

  .footer-bodegar-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 20px 28px;
    text-align: center;
  }

  .footer-bodegar-logo,
  .footer-bodegar p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bodegar-bottom {
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .logos-auspiciantes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

/* Celulares pequeños */
@media (max-width: 420px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .menu-btn {
    font-size: 9px;
    padding: 7px 5px;
  }

  .category-card,
  .bodega-home-card {
    height: 250px;
  }

  .logos-auspiciantes {
    grid-template-columns: 1fr;
  }
}