/* ==========================================
   HEADER
========================================== */

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(18px);

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.site-header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

    max-height:70px;

}

.site-header nav ul{

    display:flex;

    align-items:center;

    gap:35px;

}

.site-header nav a{

    font-weight:600;

    transition:.3s;

}

.site-header nav a:hover{

    color:var(--primary-dark);

}

/* ==========================================
   HERO
========================================== */

.hero{

    padding-top:170px;

    padding-bottom:120px;

    background:linear-gradient(135deg,#ffffff,#fff5f8);

}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.hero-label{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:#ffe9f0;

    color:#c06b8e;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:60px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    font-size:20px;

    color:#666;

    max-width:600px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.hero-info{

    display:flex;

    gap:40px;

    margin-top:60px;

}

.hero-info div{

    display:flex;

    flex-direction:column;

}

.hero-info strong{

    color:var(--primary-dark);

    font-size:26px;

}

.hero-image img{

    border-radius:30px;

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

/* ==========================================
   BUTTONS
========================================== */

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:16px 34px;

    border-radius:100px;

    font-weight:700;

    transition:.35s;

}

.btn-primary{

    background:linear-gradient(135deg,#efafc4,#d889a6);

    color:#fff;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 35px rgba(216,137,166,.35);

}

.btn-outline{

    border:2px solid var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/* ==========================================
   SERVICES
========================================== */

.services{

    background:#fff;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-12px);

}

.service-card img{

    width:100%;

    height:270px;

    object-fit:cover;

}

.service-card h3{

    font-size:28px;

    padding:25px 30px 10px;

}

.service-card p{

    color:#666;

    padding:0 30px 25px;

    min-height:130px;

}

.service-card .btn{

    margin:0 30px 30px;

}

/* ==========================================
   ADVANTAGES
========================================== */

.advantages{

    background:#fff5f8;

}

.advantages-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.advantage{

    background:#fff;

    padding:40px;

    border-radius:22px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:.35s;

}

.advantage:hover{

    transform:translateY(-8px);

}

.advantage h3{

    margin-bottom:18px;

    color:var(--primary-dark);

}

.advantage p{

    color:#666;

    line-height:1.8;

}
/* ==========================================
   ABOUT
========================================== */

.about{

    background:#ffffff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:30px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.about-content h2{

    font-size:46px;

    line-height:1.2;

    margin:20px 0;

}

.about-content p{

    color:#666;

    margin-bottom:20px;

    line-height:1.9;

}

.about-list{

    margin:35px 0;

}

.about-list li{

    padding:14px 0;

    font-size:18px;

    border-bottom:1px solid #f2f2f2;

}

/* ==========================================
   PRICE
========================================== */

.prices{

    background:#fff5f8;

}

.price-table{

    max-width:900px;

    margin:50px auto;

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.price-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 35px;

    border-bottom:1px solid #f3f3f3;

    transition:.3s;

}

.price-row:last-child{

    border:none;

}

.price-row:hover{

    background:#fff9fb;

}

.price-row span{

    font-size:18px;

}

.price-row strong{

    color:var(--primary-dark);

    font-size:22px;

}

/* ==========================================
   GALLERY
========================================== */

.gallery{

    background:#ffffff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.gallery-grid div{

    overflow:hidden;

    border-radius:22px;

}

.gallery-grid img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.45s;

}

.gallery-grid div:hover img{

    transform:scale(1.08);

}

/* ==========================================
   CTA
========================================== */

.cta{

    background:linear-gradient(135deg,#efafc4,#d889a6);

    color:#fff;

    text-align:center;

}

.cta h2{

    font-size:52px;

    margin-bottom:25px;

}

.cta p{

    font-size:20px;

    max-width:700px;

    margin:0 auto 40px;

}

.cta .btn{

    background:#fff;

    color:#d889a6;

    font-size:18px;

}

.cta .btn:hover{

    transform:translateY(-5px);

}

/* ==========================================
   ANIMATION
========================================== */

.service-card,
.advantage,
.gallery-grid div,
.price-table,
.about-image{

    transition:.45s ease;

}

.service-card:hover,
.advantage:hover{

    transform:translateY(-10px);

}

.gallery-grid div{

    cursor:pointer;

}

.gallery-grid div:hover{

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

/* ==========================================
   SECTION DECOR
========================================== */

section{

    position:relative;

}

section::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:rgba(239,175,196,.08);

    border-radius:50%;

    filter:blur(40px);

    top:40px;

    right:40px;

    z-index:0;

}

.container{

    position:relative;

    z-index:2;

}

/* ==========================================
   IMAGE RADIUS
========================================== */

img{

    border-radius:18px;

}

/* ==========================================
   TEXT SELECTION
========================================== */

::selection{

    background:#efafc4;

    color:#fff;

}

/* ==========================================
   ABOUT
========================================== */

.about{

    background:#ffffff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:30px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.about-content h2{

    font-size:46px;

    line-height:1.2;

    margin:20px 0;

}

.about-content p{

    color:#666;

    margin-bottom:20px;

    line-height:1.9;

}

.about-list{

    margin:35px 0;

}

.about-list li{

    padding:14px 0;

    font-size:18px;

    border-bottom:1px solid #f2f2f2;

}

/* ==========================================
   PRICE
========================================== */

.prices{

    background:#fff5f8;

}

.price-table{

    max-width:900px;

    margin:50px auto;

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.price-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 35px;

    border-bottom:1px solid #f3f3f3;

    transition:.3s;

}

.price-row:last-child{

    border:none;

}

.price-row:hover{

    background:#fff9fb;

}

.price-row span{

    font-size:18px;

}

.price-row strong{

    color:var(--primary-dark);

    font-size:22px;

}

/* ==========================================
   GALLERY
========================================== */

.gallery{

    background:#ffffff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.gallery-grid div{

    overflow:hidden;

    border-radius:22px;

}

.gallery-grid img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.45s;

}

.gallery-grid div:hover img{

    transform:scale(1.08);

}

/* ==========================================
   CTA
========================================== */

.cta{

    background:linear-gradient(135deg,#efafc4,#d889a6);

    color:#fff;

    text-align:center;

}

.cta h2{

    font-size:52px;

    margin-bottom:25px;

}

.cta p{

    font-size:20px;

    max-width:700px;

    margin:0 auto 40px;

}

.cta .btn{

    background:#fff;

    color:#d889a6;

    font-size:18px;

}

.cta .btn:hover{

    transform:translateY(-5px);

}

/* ==========================================
   ANIMATION
========================================== */

.service-card,
.advantage,
.gallery-grid div,
.price-table,
.about-image{

    transition:.45s ease;

}

.service-card:hover,
.advantage:hover{

    transform:translateY(-10px);

}

.gallery-grid div{

    cursor:pointer;

}

.gallery-grid div:hover{

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

/* ==========================================
   SECTION DECOR
========================================== */

section{

    position:relative;

}

section::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:rgba(239,175,196,.08);

    border-radius:50%;

    filter:blur(40px);

    top:40px;

    right:40px;

    z-index:0;

}

.container{

    position:relative;

    z-index:2;

}

/* ==========================================
   IMAGE RADIUS
========================================== */

img{

    border-radius:18px;

}

/* ==========================================
   TEXT SELECTION
========================================== */

::selection{

    background:#efafc4;

    color:#fff;

}

/* ==========================================
   HEADER EXTRA
========================================== */

.main-menu{

display:flex;

align-items:center;

gap:35px;

}

.main-menu li{

list-style:none;

}

.main-menu a{

font-weight:600;

transition:.3s;

}

.main-menu a:hover{

color:var(--primary-dark);

}

.header-contact{

display:flex;

align-items:center;

gap:20px;

}

.header-phone{

font-weight:700;

}

.mobile-toggle{

display:none;

width:46px;

height:46px;

background:none;

border:none;

cursor:pointer;

flex-direction:column;

justify-content:center;

gap:6px;

}

.mobile-toggle span{

display:block;

height:3px;

background:#333;

border-radius:10px;

}

.mobile-menu{

position:fixed;

top:90px;

left:0;

width:100%;

background:#fff;

padding:30px;

display:none;

box-shadow:0 20px 40px rgba(0,0,0,.08);

z-index:999;

}

.mobile-nav{

display:flex;

flex-direction:column;

gap:20px;

}

.mobile-contact{

margin-top:30px;

display:flex;

flex-direction:column;

gap:15px;

}

.mobile-contact a{

font-weight:600;

}

@media(max-width:900px){

.main-navigation{

display:none;

}

.header-contact{

display:none;

}

.mobile-toggle{

display:flex;

}

.mobile-menu.active{

display:block;

}

}

/* ==========================================
   FOOTER
========================================== */

.footer{

background:#1d1d1d;

color:#fff;

padding:80px 0 30px;

}

.footer-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:40px;

margin-bottom:50px;

}

.footer-logo img{

max-width:120px;

margin-bottom:20px;

}

.footer h3{

margin-bottom:20px;

font-size:22px;

color:#fff;

}

.footer p{

color:#cccccc;

line-height:1.8;

}

.footer-menu{

display:flex;

flex-direction:column;

gap:15px;

}

.footer-menu a{

color:#ddd;

transition:.3s;

}

.footer-menu a:hover{

color:#efafc4;

}

.footer-contact li,

.footer-hours li{

margin-bottom:15px;

color:#ddd;

line-height:1.8;

}

.footer-contact a{

color:#ddd;

}

.footer-line{

border:none;

height:1px;

background:#333;

margin:30px 0;

}

.footer-bottom{

display:flex;

justify-content:space-between;

align-items:center;

color:#aaa;

font-size:15px;

}

/* ==========================================
   FLOAT BUTTONS
========================================== */

.whatsapp-float{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:32px;

color:#fff;

box-shadow:0 10px 25px rgba(0,0,0,.2);

z-index:999;

transition:.3s;

}

.whatsapp-float:hover{

transform:scale(1.08);

}

.scroll-top{

position:fixed;

right:25px;

bottom:105px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#efafc4;

color:#fff;

font-size:22px;

cursor:pointer;

display:none;

box-shadow:0 10px 25px rgba(0,0,0,.2);

z-index:999;

}

.scroll-top.show{

display:block;

}

@media(max-width:992px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

}

.footer-bottom{

flex-direction:column;

gap:15px;

text-align:center;

}

}

/* ==========================================
   PAGE
========================================== */

.page-hero{

padding:180px 0 90px;

background:linear-gradient(135deg,#ffffff,#fff5f8);

text-align:center;

}

.page-hero h1{

font-size:56px;

margin-bottom:20px;

}

.breadcrumbs{

color:#777;

font-size:15px;

}

.page-content{

padding:90px 0;

background:#fafafa;

}

.content-card{

background:#fff;

padding:60px;

border-radius:25px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

line-height:1.9;

font-size:18px;

}

.content-card h2{

margin:40px 0 20px;

font-size:36px;

}

.content-card h3{

margin:30px 0 15px;

font-size:28px;

}

.content-card img{

border-radius:20px;

margin:30px auto;

display:block;

max-width:100%;

height:auto;

}

.content-card ul{

margin:20px 0 20px 25px;

}

.content-card li{

margin-bottom:12px;

}

.content-card table{

width:100%;

border-collapse:collapse;

margin:30px 0;

}

.content-card table td,
.content-card table th{

border:1px solid #eee;

padding:15px;

}

.content-card blockquote{

border-left:4px solid var(--primary);

padding-left:25px;

font-style:italic;

margin:30px 0;

color:#666;

}

.page-cta{

padding:90px 0;

text-align:center;

background:linear-gradient(135deg,#efafc4,#d889a6);

color:#fff;

}

.page-cta h2{

font-size:46px;

margin-bottom:20px;

}

.page-cta p{

max-width:700px;

margin:0 auto 35px;

font-size:20px;

}

.page-cta .btn{

background:#fff;

color:#d889a6;

}

.page-cta .btn:hover{

transform:translateY(-4px);

}

@media(max-width:768px){

.page-hero{

padding:140px 0 70px;

}

.page-hero h1{

font-size:38px;

}

.content-card{

padding:30px;

}

.page-cta h2{

font-size:34px;

}

}