/*==================================================
  LASAFORTUNADAS PREMIUM
==================================================*/

:root{

--gold:#D4AF37;
--gold2:#F5E6A6;
--black:#111111;
--text:#333333;
--light:#f8f8f8;
--white:#ffffff;
--radius:18px;
--shadow:0 20px 60px rgba(0,0,0,.08);

}

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

html{
scroll-behavior:smooth;
}

body{

font-family:'Inter',sans-serif;

color:var(--text);

background:#fff;

line-height:1.7;

text-rendering:optimizeLegibility;

-webkit-font-smoothing:antialiased;

}

img{
max-width:100%;
display:block;
}

.container{

width:min(1180px,92%);

margin:auto;

}

/**************************************************/

.header{

position:fixed;

top:0;

left:0;

right:0;

z-index:999;

background:rgba(255,255,255,.92);

backdrop-filter:blur(16px);

border-bottom:1px solid rgba(0,0,0,.05);

}

.header .container{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 0;

}

.logo{

font-size:1.7rem;

font-weight:800;

color:var(--black);

text-decoration:none;

}

.logo strong{

color:var(--gold);

}

nav{

display:flex;

gap:35px;

}

nav a{

text-decoration:none;

color:var(--black);

font-weight:600;

transition:.25s;

}

nav a:hover{

color:var(--gold);

}

/**************************************************/

.hero{

padding:180px 0 120px;

background:

radial-gradient(circle at top right,#fff8dc 0%,transparent 30%),

linear-gradient(#ffffff,#fafafa);

}

.hero-grid{

display:grid;

grid-template-columns:1.3fr .7fr;

gap:70px;

align-items:center;

}

.pill{

display:inline-flex;

padding:10px 22px;

border-radius:100px;

background:#fff7dd;

color:#886500;

font-size:.82rem;

font-weight:700;

letter-spacing:.05em;

margin-bottom:25px;

}

h1{

font-size:4.3rem;

font-weight:800;

line-height:1.05;

color:var(--black);

margin-bottom:28px;

}

.subtitle{

font-size:1.3rem;

max-width:720px;

margin-bottom:30px;

}

.hero-list{

list-style:none;

display:grid;

gap:10px;

margin-bottom:40px;

}

.hero-list li{

padding-left:28px;

position:relative;

}

.hero-list li::before{

content:"✓";

position:absolute;

left:0;

color:var(--gold);

font-weight:700;

}

.buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

}

.button{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

border-radius:100px;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.button.gold{

background:linear-gradient(135deg,var(--gold),#f7dd73);

color:#111;

box-shadow:0 15px 35px rgba(212,175,55,.30);

}

.button.gold:hover{

transform:translateY(-3px);

}

.button.outline{

border:2px solid #ddd;

color:#111;

background:#fff;

}

.button.outline:hover{

border-color:var(--gold);

color:var(--gold);

}

/**************************************************/

.price-card{

background:#fff;

padding:40px;

border-radius:24px;

box-shadow:var(--shadow);

border:1px solid rgba(0,0,0,.05);

position:relative;

overflow:hidden;

}

.price-card::before{

content:"";

position:absolute;

top:0;

left:0;

right:0;

height:6px;

background:linear-gradient(90deg,var(--gold),#ffe69b);

}

.price-card span{

font-size:.8rem;

text-transform:uppercase;

letter-spacing:.08em;

color:#777;

}

.price-card h2{

margin:12px 0;

font-size:2rem;

}

.price-card ul{

list-style:none;

margin:25px 0;

display:grid;

gap:12px;

}

.price-card li::before{

content:"• ";

color:var(--gold);

}

.price{

font-size:3rem;

font-weight:800;

color:var(--gold);

margin:30px 0;

}

.full{

width:100%;

}
/*==========================================
SECCIONES
==========================================*/

.section{

padding:120px 0;

}

.section h2{

font-size:2.8rem;

font-weight:800;

text-align:center;

margin-bottom:20px;

color:var(--black);

}

.section p.lead{

max-width:760px;

margin:0 auto 60px;

text-align:center;

font-size:1.15rem;

color:#666;

}

/*****************************************/

.cards{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.cards article{

background:#fff;

padding:35px;

border-radius:22px;

box-shadow:var(--shadow);

transition:.30s;

border:1px solid rgba(0,0,0,.05);

}

.cards article:hover{

transform:translateY(-8px);

}

.cards h3{

font-size:1.4rem;

margin-bottom:15px;

color:var(--black);

}

.cards p{

color:#666;

}

/*****************************************/

.dark{

background:#111;

color:#fff;

}

.dark h2{

color:#fff;

}

.grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

margin-top:60px;

}

.grid div{

padding:28px;

border-radius:18px;

background:#1b1b1b;

border:1px solid rgba(255,255,255,.05);

text-align:center;

font-weight:600;

transition:.30s;

}

.grid div:hover{

background:#D4AF37;

color:#111;

transform:translateY(-6px);

}

/*****************************************/

.center{

text-align:center;

}

.big-price{

font-size:5rem;

font-weight:800;

color:var(--gold);

margin:40px 0;

}

/*****************************************/

details{

background:#fff;

border-radius:18px;

margin:18px 0;

padding:22px 30px;

box-shadow:var(--shadow);

cursor:pointer;

}

details summary{

font-weight:700;

font-size:1.08rem;

list-style:none;

}

details summary::-webkit-details-marker{

display:none;

}

details p{

margin-top:20px;

color:#666;

}

/*****************************************/

.contact{

background:#fafafa;

}

.contact form{

max-width:760px;

margin:auto;

}

.contact input,

.contact textarea{

width:100%;

padding:18px;

border-radius:16px;

border:1px solid #ddd;

margin-bottom:18px;

font-size:1rem;

font-family:inherit;

transition:.25s;

}

.contact input:focus,

.contact textarea:focus{

outline:none;

border-color:var(--gold);

box-shadow:0 0 0 4px rgba(212,175,55,.15);

}

.contact button{

width:100%;

padding:20px;

border:none;

background:linear-gradient(135deg,#D4AF37,#F5E6A6);

border-radius:18px;

font-size:1.05rem;

font-weight:700;

cursor:pointer;

transition:.25s;

}

.contact button:hover{

transform:translateY(-3px);

box-shadow:0 15px 40px rgba(212,175,55,.30);

}

/*****************************************/

footer{

background:#111;

color:#bbb;

padding:45px 0;

text-align:center;

font-size:.95rem;

}

/*****************************************/

.whatsapp{

position:fixed;

right:28px;

bottom:28px;

width:68px;

height:68px;

border-radius:50%;

background:#25D366;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

text-decoration:none;

font-weight:700;

box-shadow:0 18px 40px rgba(0,0,0,.25);

transition:.25s;

z-index:999;

}

.whatsapp:hover{

transform:scale(1.08);

}

/*****************************************/

.fade{

opacity:0;

transform:translateY(35px);

transition:all .8s;

}

.fade.show{

opacity:1;

transform:none;

}

/*****************************************/

@media(max-width:1100px){

.hero-grid{

grid-template-columns:1fr;

}

.cards{

grid-template-columns:1fr 1fr;

}

.grid{

grid-template-columns:repeat(2,1fr);

}

h1{

font-size:3.3rem;

}

}

@media(max-width:768px){

.header .container{

flex-direction:column;

gap:15px;

}

nav{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.hero{

padding-top:160px;

}

h1{

font-size:2.5rem;

}

.subtitle{

font-size:1.1rem;

}

.cards{

grid-template-columns:1fr;

}

.grid{

grid-template-columns:1fr;

}

.section{

padding:80px 0;

}

.big-price{

font-size:3.5rem;

}

.button{

width:100%;

}

.buttons{

flex-direction:column;

}

.price-card{

margin-top:30px;

}

.whatsapp{

width:60px;

height:60px;

right:18px;

bottom:18px;

}

}

@media(min-width:1600px){

.container{

max-width:1400px;

}

h1{

font-size:5rem;

}

.subtitle{

font-size:1.5rem;

}

.big-price{

font-size:6rem;

}

}