@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* =========================================
   PREMIUM DESIGN VARIABLES
   ========================================= */
:root {
    /* Sophisticated Color Palette */
    --primary-color: #e8babf; /* Soft Pink original */
    --primary-light: #fef1f2;
    --accent-color: #a3c2a6; /* Soft sage green */
    --text-dark: #2c2a2a;
    --text-light: #ffffff;
    --text-muted: #6b6b6b;
    
    /* Gradients */
    --bg-gradient: linear-gradient(135deg, #fdf5f6 0%, #f7e6e8 100%); /* Softer, warmer pinkish white */
    --primary-gradient: linear-gradient(135deg, #e8babf 0%, #d5a3a9 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-header: rgba(232, 186, 191, 0.9); /* Pink glass for header */
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(232, 186, 191, 0.2);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-gradient);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

/* =========================================
   BUTTONS (Premium)
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    border-radius: 50px; /* Pill shape for premium feel */
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-light);
    box-shadow: 0 10px 20px rgba(209, 154, 159, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(209, 154, 159, 0.4);
}

.btn-white {
    background-color: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

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

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

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

/* =========================================
   HEADER (Glassmorphism)
   ========================================= */
.main-header {
    background: var(--glass-header);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

/* When scrolled via JS, can add a shadow class */
.main-header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.logo img {
    height: 60px; /* Aumentado para o logo ficar legível */
    transition: var(--transition-smooth);
}

.logo:hover img {
    transform: scale(1.05);
}

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

.main-nav a {
    color: #ffffff; /* Letras brancas para contrastar com o fundo rosa */
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    position: relative;
}

/* Elegant Underline Hover Effect */
.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

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

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    padding-top: 80px; /* offset for fixed header */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background blobs for dynamic feel */
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 15s ease-in-out infinite alternate;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, 50px); }
}

.hero-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-text {
    flex: 1;
    padding-right: 60px;
    animation: fadeUp 1s ease-out forwards;
}

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

.subtitle {
    color: var(--accent-color);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.subtitle::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
    margin-right: 15px;
}

.hero-text h1 {
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.hero-text h1 span {
    font-style: italic;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 45px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    height: 80vh;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    position: relative;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.08);
    animation: fadeInRight 1s ease-out forwards;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* =========================================
   FEATURES (ICONS) SECTION - Modern Glass
   ========================================= */
.features-section {
    padding: -50px 0 100px; /* overlapping slightly */
    position: relative;
    z-index: 10;
    margin-top: -80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--glass-shadow);
}

.feature-item {
    transition: var(--transition-smooth);
    padding: 20px;
    border-radius: 16px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-10px);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrapper {
    background: var(--primary-gradient);
    color: white;
}

.feature-item h3 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   SOBRE NÓS
   ========================================= */
.sobre-section {
    padding: 120px 0;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 70px;
    color: var(--text-dark);
}

.sobre-grid {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    background: white;
}

.sobre-image {
    flex: 1;
    position: relative;
}

.sobre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sobre-text-block {
    flex: 1;
    background: var(--primary-gradient);
    padding: 80px 60px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sobre-text-block h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: white;
}

.sobre-text-block p {
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

/* =========================================
   VOCÊ MERECE
   ========================================= */
.voce-merece-section {
    padding: 100px 0;
}

.merece-grid {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.merece-image-wrapper {
    flex: 1;
    padding: 60px;
    display: flex;
    justify-content: center;
    background: #fafafa;
}

.merece-image-wrapper img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.merece-image-wrapper img:hover {
    transform: scale(1.02) rotate(1deg);
}

.merece-text-block {
    flex: 1;
    background: var(--primary-color);
    padding: 80px 60px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.merece-text-block h2 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 25px;
    color: white;
    font-style: italic;
}

.merece-text-block p {
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

/* =========================================
   SERVICES CARDS
   ========================================= */
.servicos-cards-section {
    padding: 120px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.card-img-wrapper {
    overflow: hidden;
    height: 350px;
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-content {
    padding: 35px 30px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* =========================================
   SERVICES ACCORDION (Modern)
   ========================================= */
.servicos-accordion-section {
    background: var(--primary-gradient);
    padding: 120px 0;
    color: #ffffff;
    position: relative;
}

.servicos-accordion-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
}

.accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.accordion-col-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.accordion-col-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    text-align: left;
    padding: 20px 0;
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    color: var(--primary-light);
    padding-left: 10px;
}

.accordion-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.accordion-header:hover .accordion-icon {
    background: white;
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0;
}

.accordion-content.active {
    padding-bottom: 25px;
    transition: max-height 0.6s ease-in-out;
}

.accordion-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
}

.accordion-content ul li {
    padding: 10px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

/* =========================================
   FEEDBACKS
   ========================================= */
.feedbacks-section {
    padding: 120px 0;
}

.stars {
    font-size: 1.8rem;
    letter-spacing: 5px;
    margin-bottom: 30px;
    color: #ffd700; /* Gold */
}

.feedback-text {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
    line-height: 1.6;
}

.dots {
    margin-top: 40px;
    color: var(--primary-color);
    letter-spacing: 10px;
    font-size: 2rem;
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
    background-color: var(--text-dark);
    padding: 80px 0 40px;
    color: #ffffff;
}

.footer-col > h3 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-info h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05);
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1rem;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.phone {
    font-size: 2rem !important;
    font-family: var(--font-heading);
    margin-bottom: 25px !important;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* =========================================
   BOOKING & ADMIN PAGES
   ========================================= */
.booking-section, .dashboard-section {
    padding: 120px 0;
    min-height: 100vh;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--glass-shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: rgba(255,255,255,0.9);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(209, 154, 159, 0.1);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .hero-text h1 { font-size: 3.5rem; }
    .features-grid, .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .sobre-grid, .merece-grid { flex-direction: column; }
    .accordion-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .header-content { flex-direction: column; gap: 15px; }
    .hero-container { flex-direction: column-reverse; text-align: center; }
    .hero-text { padding: 40px 20px; }
    .subtitle { justify-content: center; }
    .subtitle::before { display: none; }
    .hero-image { height: 40vh; border-radius: 20px; width: 100%; }
    .features-grid, .cards-grid { grid-template-columns: 1fr; }
    .footer-info { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; display: flex; }
}
