/* Estilos principais do site */

@font-face {
    font-family: 'Amsterdam Three';
    src: url('../fonts/amsterdam-three-slant.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #46382f;
    --secondary-color: #6c5b4c;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --success-color: #28a745;
    --whatsapp-color: #25D366;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    padding: 15px 0;
}

.navbar-brand {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: white;
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: white;
    font-weight: 700;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../imagens/marina-faioli-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-initials {
    font-family: 'Amsterdam Three', cursive;
    font-size: 8rem;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 5px;
    display: block;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.btn-custom:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(70, 56, 47, 0.3);
}

.btn-custom:hover::before {
    opacity: 1;
}

.btn-custom:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(70, 56, 47, 0.2);
}

/* Sections */
section {
    padding: 100px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 15%;
}

.section-title p {
    color: var(--secondary-color);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Sobre Section */
.sobre {
    background-color: #f9f9f9;
}

.sobre-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.sobre-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.sobre-img img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

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

.sobre-content h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.sobre-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.sobre-content .credentials {
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 30px;
}

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

/* Serviços Section */
.servicos {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.servicos::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(70, 56, 47, 0.05) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
}

.servicos::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(70, 56, 47, 0.05) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
}

.service-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(70, 56, 47, 0.03) 0%, rgba(108, 91, 76, 0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(70, 56, 47, 0.2);
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    top: 0;
    left: 0;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    border-radius: 50%;
}

.service-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.service-card:hover h4 {
    transform: translateY(-5px);
}

.service-card p {
    color: #666;
    transition: var(--transition);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Localização Section */
.localizacao {
    background-color: #f9f9f9;
}

/* FAQ Section */
.faq {
    background-color: white;
    padding: 100px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--primary-color);
    background-color: white;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 20px 25px;
    background-color: white;
}

.accordion-body p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.7;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.location-info {
    margin-bottom: 30px;
}

.location-info h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.location-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.location-info .address {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.location-info .address i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

/* Contato Section */
.contato {
    background-color: white;
}

.contact-info {
    text-align: center;
    margin-bottom: 50px;
}

.contact-info p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background-color: var(--whatsapp-color) !important;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(135deg, transparent 25%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 50%, transparent 50%, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 20px 20px;
    transform: rotate(180deg);
}

.footer-artistic {
    position: relative;
    z-index: 2;
}

.footer-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.footer-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
    transition: transform 0.8s ease;
}

.footer-image-container:hover .footer-main-image {
    transform: scale(1.05);
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, rgba(70, 56, 47, 0.7), transparent);
}

.footer-signature {
    position: relative;
    z-index: 3;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    text-align: center;
    background-color: var(--primary-color);
}

.footer-initials {
    font-family: 'Amsterdam Three', cursive;
    font-size: 6rem;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 5px;
    display: inline-block;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    transform: rotate(-5deg);
    animation: float 6s ease-in-out infinite;
    padding: 10px 15px;
}

@keyframes float {
    0% {
        transform: rotate(-5deg) translateY(0px);
    }
    50% {
        transform: rotate(-5deg) translateY(-10px);
    }
    100% {
        transform: rotate(-5deg) translateY(0px);
    }
}

.footer-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-info .credentials {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-quote {
    max-width: 600px;
    margin: 30px auto;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    position: relative;
    padding: 0 20px;
}

.footer-quote:before,
.footer-quote:after {
    content: '\201C';
    font-size: 3rem;
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(255, 255, 255, 0.2);
    font-family: Georgia, serif;
}

.footer-quote:after {
    content: '\201D';
    top: auto;
    left: auto;
    bottom: -40px;
    right: -10px;
}

.footer-social {
    margin-top: 30px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.instagram-link i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.instagram-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.footer-copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 767px) {
    .footer-image-container {
        height: 250px;
    }
    
    .footer-initials {
        font-size: 4rem;
    }
    
    .footer-info h2 {
        font-size: 1.5rem;
    }
    
    .footer-quote {
        font-size: 1rem;
    }
}

/* Estilos da Seção de Rinoplastia */
.rinoplastia-section {
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.rinoplastia-image {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rinoplastia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.rinoplastia-content {
    padding: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.rinoplastia-inner {
    padding: 60px;
    color: #fff;
}

.rinoplastia-inner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.rinoplastia-inner .highlight {
    position: relative;
    display: inline-block;
}

.rinoplastia-inner .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.separator {
    width: 80px;
    height: 3px;
    background-color: #fff;
    margin-bottom: 25px;
}

.rinoplastia-inner .lead {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 400;
}

.rinoplastia-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    margin-bottom: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-text p {
    margin-bottom: 0;
    opacity: 0.9;
}

.rinoplastia-btn {
    margin-top: 20px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    background-color: #fff;
    color: #fff;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.rinoplastia-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

@media (max-width: 991px) {
    .rinoplastia-section .row {
        flex-direction: column;
    }
    
    .rinoplastia-image {
        min-height: 400px;
        width: 100%;
    }
    
    .rinoplastia-content {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .rinoplastia-inner {
        padding: 40px 20px;
    }
    
    .rinoplastia-inner h2 {
        font-size: 2rem;
    }
    
    .rinoplastia-inner .lead {
        font-size: 1.1rem;
    }
}

/* Removido: footer-heading não utilizado no novo design do footer */

/* Removido: footer-contact-list não utilizado no novo design do footer */

/* Removido: footer-social-links não utilizado no novo design do footer */

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.name-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.3));
    margin: 10px auto 15px;
    border-radius: 3px;
}

/* Mantido apenas para compatibilidade com o footer atual */
.footer-social {
    margin-top: 30px;
}


/* Classes de botões sociais simplificadas */
.instagram-btn {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-quote {
    position: relative;
    padding-left: 20px;
}

.footer-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.3));
    border-radius: 3px;
}

.footer-quote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.whatsapp-float a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    transition: all 0.5s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float a:hover::before {
    top: -20%;
    left: -20%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float a {
    animation: pulse 2s infinite;
    text-decoration: none;
}

/* Modal */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.header-initials {
    font-family: 'Amsterdam Three', cursive;
    font-size: 2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    vertical-align: middle;
    margin-right: 5px;
}

.modal-header {
    background-color: var(--primary-color);
    color: white;
    border-bottom: none;
    text-align: center;
    padding: 20px;
}

.modal-title {
    width: 100%;
    font-weight: 700;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.modal-body h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.modal-body p {
    margin-bottom: 20px;
}

.modal-body .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.modal-body .payment-methods {
    margin-bottom: 25px;
}

.modal-footer {
    border-top: none;
    justify-content: center;
    padding: 0 30px 30px;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-fadeIn {
    animation: fadeIn 1s ease forwards;
}

.animate-slideInUp {
    animation: slideInUp 1s ease forwards;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .navbar {
        padding: 10px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    section {
        padding: 70px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .sobre-img {
        margin-bottom: 30px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .location-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn-custom {
        padding: 10px 20px;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.btn-close:hover {
    opacity: 0.8;
}
