/* ============================================================
   BEAUTY PET CARE - Skyn Health & SPA
   Cores: #263e67 (azul) | #e6c0aa (bege)
   ============================================================ */

:root {
    --primary: #263e67;
    --primary-dark: #1a2d4a;
    --primary-light: #3a5a8a;
    --secondary: #e6c0aa;
    --secondary-dark: #d4aa94;
    --text: #2c3e50;
    --text-light: #5a7a8a;
    --light: #f5f0eb;
    --white: #ffffff;
    --gray: #e8e0d8;
    --dark: #1a2d4a;
    --shadow: 0 5px 25px rgba(38, 62, 103, 0.10);
    --shadow-hover: 0 15px 40px rgba(38, 62, 103, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.3px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ===== TÍTULOS ===== */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
    background: rgba(38, 62, 103, 0.08);
    padding: 4px 16px;
    border-radius: 50px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: var(--text);
}

.section-title .text-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title .text-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(230, 192, 170, 0.35);
    z-index: -1;
    border-radius: 4px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    border-bottom: 1px solid rgba(38, 62, 103, 0.08);
    box-shadow: var(--shadow);
    padding: 8px 0;
}

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

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

.header.scrolled .logo img.logo-img {
    height: 55px;
}

.nav ul {
    display: flex;
    gap: 32px;
}

.nav a {
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    color: var(--text);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav a:hover {
    color: var(--primary);
}

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

.header-cta .btn-primary {
    padding: 10px 24px;
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: -1;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title .text-highlight {
    color: var(--white);
    position: relative;
}

.hero-title .text-highlight::after {
    background: rgba(255, 255, 255, 0.25);
    height: 10px;
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.hero-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.hero-buttons .btn-secondary {
    border-color: var(--white);
}

.hero-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat span {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.hero-stat label {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 400;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 50px;
    position: relative;
    opacity: 0.7;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(38, 62, 103, 0.08);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(38, 62, 103, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition);
    color: var(--primary);
    font-size: 1.6rem;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text);
}

.service-description {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.diferenciais-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 16px;
}

.diferenciais-list li {
    padding: 5px 0 5px 28px;
    position: relative;
    color: var(--text-light);
    font-size: 0.85rem;
}

.diferenciais-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    cursor: pointer;
}

.service-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--light);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== SPECIALTIES ===== */
.specialties {
    padding: 100px 0;
    background: var(--light);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.specialty-item {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    font-weight: 500;
    color: var(--text);
    border: 1px solid transparent;
}

.specialty-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.specialty-item h3 {
    font-size: 1rem;
}

/* ===== SEGURANÇA ===== */
.seguranca {
    padding: 100px 0;
    background: var(--white);
}

.seguranca-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.seguranca-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.seguranca-icons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.seguranca-item {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.seguranca-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.seguranca-item i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.seguranca-item h4 {
    font-size: 1.1rem;
    color: var(--text);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 35px 30px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: rgba(38, 62, 103, 0.08);
    box-shadow: var(--shadow-hover);
}

.testimonial-text {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text p {
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: -15px;
    left: -8px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray);
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
    font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(38, 62, 103, 0.08);
}

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

.contact-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 55px;
    margin-bottom: 16px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

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

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-schedule li {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-schedule li:last-child {
    border-bottom: none;
}

.footer-schedule li span {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ===== CAROUSEL ===== */
.carousel-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.carousel {
    position: relative;
    width: 100%;
    height: 380px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--primary);
    font-size: 1rem;
}

.carousel-btn:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.carousel-btn-prev { left: 15px; }
.carousel-btn-next { right: 15px; }

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.carousel-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-subtitle { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { order: -1; }
    .hero-image img { max-width: 70%; }
    
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-text .btn { margin: 0 auto; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    
    .contact-content { grid-template-columns: 1fr; }
    .contact-info .section-title { text-align: center; }
    .contact-info > p { text-align: center; }
    
    .seguranca-content { grid-template-columns: 1fr; text-align: center; }
    .seguranca-text .section-title { text-align: center !important; }
    .seguranca-icons { grid-template-columns: repeat(3, 1fr); }
    
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        transition: var(--transition);
        padding: 40px 30px;
        box-shadow: var(--shadow);
    }
    .nav.active { left: 0; }
    .nav ul { flex-direction: column; gap: 16px; }
    .nav a { font-size: 1.1rem; }
    
    .header-cta { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
    
    .logo img.logo-img { height: 45px; }
    .header.scrolled .logo img.logo-img { height: 40px; }
    
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stat span { font-size: 1.5rem; }
    .hero-image img { max-width: 80%; }
    
    .section-title { font-size: 1.8rem; }
    
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .specialties-grid { grid-template-columns: repeat(2, 1fr); }
    
    .about-stats { grid-template-columns: 1fr; gap: 15px; }
    .seguranca-icons { grid-template-columns: 1fr; }
    
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .footer-col { text-align: center; }
    .social-links { justify-content: center; }
    
    .carousel { height: 250px; }
    .carousel-btn { width: 32px; height: 32px; font-size: 0.8rem; }
    
    .contact-form { padding: 25px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .hero-stats { flex-direction: column; gap: 10px; }
    .hero-stat { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
    .hero-stat:last-child { border-bottom: none; }
    
    .section-title { font-size: 1.6rem; }
    .specialties-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .specialty-item { padding: 16px 12px; font-size: 0.85rem; }
    
    .contact-details .contact-item { flex-direction: column; align-items: center; text-align: center; }
}