/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button {
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #333;
}

strong {
    color: #1A1A1A;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #05E12F, #00B5E0);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(5, 225, 47, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(5, 225, 47, 0.4);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
    color: #1A1A1A;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #05E12F, #00B5E0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #1A1A1A;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #05E12F;
    box-shadow: 0 0 0 3px rgba(5, 225, 47, 0.1);
    transform: translateY(-1px);
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #05E12F, #00B5E0);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 225, 47, 0.3);
}

.treatment-cta {
    display: inline-block;
    background-color: #00B5E0;
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.treatment-cta:hover {
    background-color: #05E12F;
    transform: translateY(-1px);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container a {
    text-decoration: none;
    outline: none;
}

.nav-container a:focus, a:active {
    outline: none;
}


.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    color: #05E12F;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.logo-text span {
    color: #A3A3A3;
    font-size: 0.9rem;
    display: block;
    margin-top: -0.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    outline: none;
}

.nav-link:hover {
    color: #05E12F;
}

.nav-link:focus {
    outline: none;
    color: #05E12F;
}

.nav-contact-btn {
    margin-left: 1rem;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, #05E12F, #00B5E0);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 225, 47, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 225, 47, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 38, 69, 0.8) 0%,
        rgba(0, 38, 69, 0.6) 50%,
        rgba(0, 38, 69, 0.4) 100%
    );
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
}

.hero-left {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease 0.3s forwards;
    max-width: 600px;
}

.hero-left .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem;
}

.hero-left .cta-button.secondary {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.hero-left .cta-button.secondary:hover {
    background: #FFFFFF;
    color: #002645;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #F5F5F5;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Hero Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #FFFFFF;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInModal 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #F5F5F5;
}

.modal-header h3 {
    margin: 0;
    color: #1A1A1A;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    color: #A3A3A3;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #F5F5F5;
    color: #1A1A1A;
}

.modal .contact-form {
    padding: 2rem;
    background: transparent;
    box-shadow: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInModal {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1A1A1A;
}

.about h3 {
    color: #05E12F;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.benefits {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.benefits h4 {
    color: #00B5E0;
    margin-bottom: 1rem;
}

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

.benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #05E12F;
    font-weight: 600;
}

/* Expert Presentation Section */
.expert-presentation {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.expert-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.expert-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
}

.expert-photo .hover-hint {
    margin-bottom: 0;
}

.photo-container {
    position: relative;
    display: inline-block;
}

.photo-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.photo-placeholder:hover {
    transform: translateY(-5px);
}

.expert-tooltip {
    position: absolute;
    top: 50%;
    left: 120%;
    transform: translateY(-50%);
    width: 350px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.photo-container:hover .expert-tooltip {
    opacity: 1;
    visibility: visible;
    left: 110%;
}

.tooltip-content {
    background: linear-gradient(135deg, rgba(5, 225, 47, 0.05), rgba(0, 181, 224, 0.05));
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 181, 224, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.tooltip-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #05E12F, #00B5E0);
    border-radius: 16px 16px 0 0;
}

.tooltip-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid rgba(0, 181, 224, 0.1);
}

.tooltip-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tooltip-text p {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.expert-name {
    text-align: left;
}

.expert-name h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 8px 0;
}

.expert-name span {
    font-size: 1rem;
    color: #00B5E0;
    font-weight: 500;
    font-style: italic;
    opacity: 0.8;
}

.photo-placeholder svg {
    display: block;
    width: 100%;
    height: auto;
    max-width: 300px;
}

.expert-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expert-intro h2 {
    color: #1A1A1A;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.expert-intro p {
    color: #333;
    line-height: 1.6;
    font-size: 1.1rem;
}

.hover-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 181, 224, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 181, 224, 0.1);
    margin-bottom: 1rem;
    order: -1;
}

.hover-hint svg {
    flex-shrink: 0;
}

.hover-hint span {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.mobile-hint {
    display: none;
}

.desktop-hint {
    display: inline;
}

.integrative-aesthetics {
    margin-top: 2rem;
}

.aesthetics-highlight {
    background: linear-gradient(135deg, rgba(5, 225, 47, 0.05), rgba(0, 181, 224, 0.05));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 181, 224, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.aesthetics-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #05E12F, #00B5E0);
    border-radius: 16px 16px 0 0;
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-content h3 {
    color: #1A1A1A;
    margin: 0 0 0.75rem 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.highlight-content p {
    color: #333;
    line-height: 1.6;
    font-size: 1.05rem;
    margin: 0;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(5, 225, 47, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-content {
    flex: 1;
}

.benefit-card h4 {
    color: #1A1A1A;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}



/* Treatments Section */
.treatments {
    padding: 80px 0;
    background: linear-gradient(135deg, #002645 0%, #003a6b 50%, #004d8a 100%);
    position: relative;
    overflow: hidden;
}

.treatments::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        radial-gradient(ellipse 600px 400px at 30% 70%, rgba(5, 225, 47, 0.08) 0%, rgba(5, 225, 47, 0.03) 25%, transparent 60%),
        radial-gradient(ellipse 500px 350px at 70% 30%, rgba(0, 181, 224, 0.06) 0%, rgba(0, 181, 224, 0.02) 35%, transparent 70%);
    animation: fluidBackground 10s ease-in-out infinite;
    z-index: 1;
}

.treatments .container {
    position: relative;
    z-index: 2;
}

.treatments h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.treatment-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 400px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.treatment-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.199); /*rgba(5, 225, 47, 0.3);*/
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
}

.treatment-card[data-treatment="relaxante"] .card-background {
    background-image: linear-gradient(rgba(0, 38, 69, 0.4), rgba(0, 38, 69, 0.7)), url('src/images/relaxante.jpg');
}

.treatment-card[data-treatment="linfatica"] .card-background {
    background-image: linear-gradient(rgba(0, 38, 69, 0.4), rgba(0, 38, 69, 0.7)), url('src/images/linfatica.jpg');
}

.treatment-card[data-treatment="modeladora"] .card-background {
    background-image: linear-gradient(rgba(0, 38, 69, 0.4), rgba(0, 38, 69, 0.7)), url('src/images/modeladora.avif');
}

.treatment-card[data-treatment="limpeza"] .card-background {
    background-image: linear-gradient(rgba(0, 38, 69, 0.4), rgba(0, 38, 69, 0.7)), url('src/images/limpeza-pele.png');
}

.treatment-card:hover .card-background {
    filter: blur(2px) brightness(0.6);
    transform: scale(1.05);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.4s ease;
}

.treatment-title {
    color: white;
    margin: 0;
}

.treatment-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #FFFFFF;
}

.treatment-details {
    opacity: 0;
    max-height: 0;
    /* Removido overflow: hidden para permitir o glow dos botões */
    transform: translateY(10px);
    transition: all 0.4s ease;
    margin-top: 0;
    pointer-events: none;
}

.treatment-card:hover .treatment-details {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
    margin-top: 1rem;
    pointer-events: auto;
}

.treatment-card:hover .card-content {
    background: rgba(255, 255, 255, 0.1);
    border-top-color: rgba(255, 255, 255, 0.199);
}

.treatment-details p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.treatment-details .cta-button {
    display: inline-block;
    background: rgba(0, 181, 224, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: #00B5E0;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 181, 224, 0.2);
    position: relative;
    /* Removido overflow: hidden para evitar corte do glow */
}

.treatment-details .cta-button:hover {
    background: rgba(0, 181, 224, 0.3);
    color: #FFFFFF;
    transform: translateY(-2px);
    /* Reduzido o blur da sombra para evitar transbordamento */
    box-shadow: 0 6px 15px rgba(0, 181, 224, 0.4);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 50%, #F8F9FA 100%);
    position: relative;
    overflow-x: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 800px 400px at 20% 80%, rgba(0, 181, 224, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse 600px 300px at 80% 20%, rgba(5, 225, 47, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1A1A1A;
    font-size: 2.5rem;
    font-weight: 700;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.carousel-container {
    overflow: visible;
    border-radius: 20px;
    position: relative;
    padding: 2rem 1rem;
    margin: 0 -1rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    overflow: visible;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #05E12F, #00B5E0);
    border-radius: 20px 20px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 181, 224, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.quotation-mark {
    position: absolute;
    top: -0.5rem;
    right: 1.5rem;
    opacity: 0.6;
    transition: all 0.4s ease;
    transform: rotate(0deg);
    z-index: 1;
}

.testimonial-card:hover .quotation-mark {
    opacity: 0.8;
    transform: rotate(5deg) scale(1.1);
}

.quotation-mark svg {
    filter: drop-shadow(0 2px 8px rgba(0, 38, 69, 0.2));
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-photo {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 181, 224, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-photo {
    border-color: rgba(0, 181, 224, 0.4);
    transform: scale(1.05);
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.author-info h4 {
    color: #1A1A1A;
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    color: #00B5E0;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 181, 224, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #00B5E0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: rgba(0, 181, 224, 0.1);
    border-color: rgba(0, 181, 224, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 181, 224, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #00B5E0;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(0, 181, 224, 0.6);
    transform: scale(1.1);
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: linear-gradient(135deg, #05E12F, #00B5E0);
    color: #FFFFFF;
    text-align: center;
}

.booking h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.booking p {
    color: #FFFFFF;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.booking .cta-button {
    background-color: #FFFFFF;
    color: #05E12F;
}

.booking .cta-button:hover {
    background-color: #F5F5F5;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: #FFFFFF;
}

.portfolio .section-title {
    text-align: center;
}

.portfolio .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-carousel {
    position: relative;
    margin-bottom: 50px;
}

.portfolio-carousel .carousel-container {
    overflow: hidden;
}

.portfolio-carousel .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.portfolio-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.portfolio-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-slide:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-slide:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.portfolio-overlay p {
    font-size: 0.95rem;
    color: #E0E0E0;
    margin: 0;
}

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

.cta-button.secondary {
    background: transparent;
    color: #00B5E0;
    border: 2px solid #00B5E0;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: #00B5E0;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 181, 224, 0.3);
}

/* Portfolio Carousel Responsive */
@media (min-width: 768px) {
    .portfolio-slide {
        min-width: 50%;
    }
    
    .portfolio-carousel .carousel-track {
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .portfolio-slide {
        min-width: 33.333%;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #F5F5F5;
}

.faq .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #1A1A1A;
    font-size: 2.5rem;
    font-weight: 600;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 181, 224, 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1A1A1A;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #00B5E0;
}

.faq-question span {
    flex: 1;
    margin-right: 16px;
}

.faq-icon {
    color: #00B5E0;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 24px;
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.faq-answer ul {
    padding: 0 24px 24px 48px;
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer li strong {
    color: #1A1A1A;
}

.faq-cta {
    padding: 0 24px 24px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.faq-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #00B5E0, #05E12F);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.faq-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 181, 224, 0.4);
}

.faq-cta .cta-button svg {
    width: 16px;
    height: 16px;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer p,
    .faq-answer ul {
        padding: 0 20px 20px;
    }
    
    .faq-answer ul {
        padding-left: 40px;
    }
    
    .faq-cta {
        padding: 0 20px 20px;
        flex-direction: column;
    }
    
    .faq-cta .cta-button {
        justify-content: center;
        width: 100%;
    }
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-text {
    text-align: left;
}

.footer-text h3 {
    color: #05E12F;
    margin: 0 0 0.25rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.footer-text p {
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

.footer-contact h4,
.footer-hours h4,
.footer-social h4 {
    color: #00B5E0;
    margin-bottom: 1rem;
}

.footer-contact p,
.footer-hours p {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    color: #A3A3A3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #05E12F;
    color: #1A1A1A;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #FFFFFF;
}

.footer-bottom p {
    color: #FFFFFF;
}

/* Responsive Design - Mobile First */

/* Mobile (360px and up) */
@media (max-width: 767px) {
    .nav-container {
        padding: 1rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #FFFFFF;
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        justify-content: flex-start;
        align-items: center;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-contact-btn {
        margin-left: 0;
        margin-top: 1rem;
        order: 4;
    }
    
    .contact-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 50px;
        box-shadow: 0 6px 20px rgba(5, 225, 47, 0.3);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section Mobile - Ajuste para header fixo */
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    /* Treatments Mobile */
    .treatments {
        padding: 3rem 0;
    }

    .treatments h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .treatment-card {
        height: 350px;
        cursor: pointer;
    }

    /* No mobile, os cards expandem com clique/tap */
    .treatment-card.active .treatment-details {
        opacity: 1;
        max-height: 200px;
        transform: translateY(0);
        margin-top: 1rem;
        pointer-events: auto;
    }

    .treatment-card.active .card-background {
        filter: blur(2px) brightness(0.6);
        transform: scale(1.05);
    }

    .treatment-card.active .card-content {
        background: rgba(255, 255, 255, 0.1);
        border-top-color: rgba(255, 255, 255, 0.199);
    }

    .card-content {
        padding: 1.5rem;
    }

    .treatment-title h3 {
        font-size: 1.3rem;
    }

    .treatment-details p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .treatment-details .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Testimonials Mobile */
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .testimonials-carousel {
        padding: 0 2rem;
    }
    
    .carousel-container {
        overflow: visible;
        padding: 1.5rem 0.5rem;
        margin: 0 -0.5rem;
    }

    .carousel-track {
        gap: 1rem;
    }

    .testimonial-card {
        flex: 0 0 calc(100% - 1rem);
        padding: 2rem;
        margin: 0 0.5rem;
    }

    .testimonial-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .author-photo {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info span {
        font-size: 0.85rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-navigation {
        margin-top: 1.5rem;
    }

    .carousel-indicators {
        margin-top: 1rem;
    }

    .quotation-mark {
        top: -0.25rem;
        right: 1rem;
    }

    .quotation-mark svg {
        width: 36px;
        height: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .footer-logo {
        width: 50px;
        height: 50px;
    }
    
    .footer-text h3 {
        font-size: 1.25rem;
    }
    
    .footer-text p {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Expert Presentation Mobile */
    .expert-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .expert-photo {
        order: 1;
    }
    
    .expert-info {
        order: 2;
        gap: 1.5rem;
    }
    
    .expert-intro h2 {
        font-size: 1.8rem;
    }
    
    .expert-name {
        text-align: center;
    }
    
    .expert-intro p {
        font-size: 1rem;
        text-align: left;
    }
    
    .expert-tooltip {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        max-width: 350px;
        z-index: 1000;
    }

    .photo-container:hover .expert-tooltip {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .tooltip-content::after {
        display: none;
    }

    .mobile-hint {
        display: inline;
    }

    .desktop-hint {
        display: none;
    }

    .hover-hint {
        text-align: center;
    }
    
    .integrative-aesthetics h3 {
        font-size: 1.3rem;
    }
    
    .aesthetics-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .highlight-icon {
        align-self: center;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .benefit-icon {
        align-self: center;
        margin-top: 0;
    }
    
    .benefits-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
    }
    
    .benefit-card {
        padding: 1.2rem;
        max-width: 300px;
        width: 100%;
    }
    
    .photo-placeholder svg {
        max-width: 250px;
    }
}

/* Tablet (768px and up) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Expert Presentation Tablet */
    .expert-content {
        grid-template-columns: 1fr 1.5fr;
        gap: 3rem;
    }
    
    .expert-intro h2 {
        font-size: 1.8rem;
    }
    
    .expert-tooltip {
        position: absolute;
        top: 50%;
        left: 110%;
        transform: translateY(-50%);
        width: 320px;
        z-index: 10;
    }

    .photo-container:hover .expert-tooltip {
        left: 105%;
    }
    
    .benefits-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .photo-placeholder svg {
        max-width: 280px;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet Footer */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile Footer */
@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-info {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fluidBackground {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(1deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-1deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-content,
.about-content,
.treatment-card,
.testimonial {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #05E12F;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: linear-gradient(135deg, #000000 0%, #333333 100%);
    }
    
    .hero-title,
    .hero-subtitle {
        color: #FFFFFF;
    }
}

/* Custom Notyf Toast Styles */
.notyf {
    font-family: 'Montserrat', sans-serif;
}

.notyf__toast {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    padding: 16px 20px;
    min-height: auto;
}

.notyf__toast--success {
    background: linear-gradient(135deg, #05E12F 0%, #04C929 100%) !important;
    color: #FFFFFF;
}

.notyf__toast--error {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%) !important;
    color: #FFFFFF;
}

.notyf__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-right: 12px;
    background: rgba(255, 255, 255, 0.2);
}

.notyf__icon--success {
    background: rgba(255, 255, 255, 0.2);
}

.notyf__icon--error {
    background: rgba(255, 255, 255, 0.2);
}

.notyf__message {
    flex: 1;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.notyf__dismiss {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.notyf__dismiss:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Toast animation improvements */
.notyf__toast {
    animation: notyf-fadein 0.3s ease-out;
}

@keyframes notyf-fadein {
    0% {
        opacity: 0;
        transform: translateX(100%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Responsive toast positioning */
@media (max-width: 768px) {
    .notyf {
        padding: 16px;
    }
    
    .notyf__toast {
        margin-bottom: 8px;
        font-size: 13px;
        padding: 14px 16px;
    }
    
    .notyf__icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
        margin-right: 10px;
    }
    
    .notyf__dismiss {
        width: 20px;
        height: 20px;
    }
}