/* 
  Studio Cavaleto - CSS Styles
  Colors:
  - Primary: Black (#000000), White (#ffffff), Silver (#c0c0c0)
  - Accent: Light Pink (#ffd1dc), Gold (#d4af37)
  Fonts: 
  - Headings: 'Playfair Display', serif
  - Body: 'Montserrat', sans-serif
*/

/* Global Styles */
:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --primary-silver: #c0c0c0;
    --accent-pink: #ffd1dc;
    --accent-gold: #d4af37;
    --dark-gray: #333333;
    --light-gray: #f9f9f9;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background-color: var(--primary-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-black);
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--accent-pink);
}

.btn {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-agendar {
    background-color: var(--accent-gold);
    color: var(--primary-white);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-agendar:hover {
    background-color: transparent;
    color: var(--accent-gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.section-padding {
    padding: 100px 0;
    scroll-margin-top: 80px;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--accent-pink);
    margin: 15px auto 20px;
    position: relative;
}

.divider span {
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--accent-gold);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bg-pattern {
    background-color: var(--light-gray);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffd1dc' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-attachment: fixed;
}

/* Header and Navigation */
header {
    background-color: #000000;
    transition: all 0.4s ease;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background-color: #000000;
    padding: 10px 0;
}

.navbar-brand {
    padding: 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.navbar-dark .navbar-nav .nav-link {
    color: var(--primary-silver);
    font-weight: 400;
    padding: 10px 15px;
    position: relative;
    transition: all var(--transition-speed) ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--accent-pink);
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width var(--transition-speed) ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 30px;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    height: calc(100vh - 80px);
    margin-top: 80px; /* Ajuste para o header fixo */
    background-image: url('../assets/images/banner.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

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

.welcome-text {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: var(--primary-silver);
}

.studio-name {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-white);
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--accent-pink);
}

/* Service Section */
.service-card {
    background-color: var(--primary-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all var(--transition-speed) ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-pink);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 209, 220, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition-speed) ease;
}

.service-icon i {
    font-size: 35px;
    color: var(--accent-gold);
    transition: all var(--transition-speed) ease;
}

.service-card:hover .service-icon {
    background-color: var(--accent-gold);
}

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

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-description {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* Contato Section */
.contact-info {
    background-color: var(--primary-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 22px;
    color: var(--accent-gold);
    margin-right: 15px;
    margin-top: 3px;
}

.contact-item h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p {
    margin-bottom: 0;
    color: var(--dark-gray);
}

.contact-item a, .map-link {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover, .map-link:hover {
    color: var(--accent-pink);
}

.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.map-container iframe {
    display: block;
    width: 100%;
    border-radius: 10px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 15px 0;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.map-overlay p {
    color: var(--primary-white);
    margin: 0;
    font-weight: 500;
}

/* Antes e Depois Section */
.before-after-gallery {
    position: relative;
}

.before-after-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.before-after-item img {
    width: 100%;
    border-radius: 10px;
    transition: all var(--transition-speed) ease;
}

.before-after-item:hover img {
    transform: scale(1.05);
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 20px;
    color: var(--primary-white);
    text-align: center;
}

.overlay-text span {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    opacity: 0.8;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Depoimentos Section */
.testimonial-card {
    background-color: var(--primary-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all var(--transition-speed) ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-pink);
}

.testimonial-icon {
    margin-bottom: 20px;
}

.testimonial-icon i {
    font-size: 30px;
    color: var(--accent-gold);
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-author h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--accent-pink);
}

/* Galeria Section */
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    transition: all var(--transition-speed) ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

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

/* Call to Action Section */
.cta-box {
    background: linear-gradient(135deg, var(--primary-black) 0%, #333 100%);
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-white);
    position: relative;
    z-index: 2;
}

.cta-box p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px;
    color: var(--primary-silver);
    position: relative;
    z-index: 2;
}

.cta-box .btn {
    position: relative;
    z-index: 2;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: var(--primary-silver);
    padding: 70px 0 20px;
}

.footer-logo-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.tagline {
    font-style: italic;
    margin-top: 20px;
    color: var(--primary-silver);
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

.footer-heading {
    color: var(--primary-white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--accent-gold);
    bottom: 0;
    left: 0;
}

.footer p {
    margin-bottom: 10px;
}

.footer i {
    color: var(--accent-gold);
    margin-right: 10px;
}

.social-link {
    display: block;
    color: var(--primary-silver);
    margin-bottom: 10px;
    transition: all var(--transition-speed) ease;
}

.social-link:hover {
    color: var(--accent-pink);
}

.social-link i {
    font-size: 18px;
}

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

/* Responsive Styles */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .studio-name {
        font-size: 3.5rem;
    }
    
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .welcome-text {
        font-size: 1.5rem;
    }
    
    .studio-name {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .contact-item i {
        font-size: 18px;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
}

@media (max-width: 575.98px) {
    .btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .service-card, 
    .testimonial-card {
        padding: 20px;
    }
    
    .cta-box {
        padding: 30px 15px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/* Carrossel Nosso Espaço */
#espacoCarousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

#espacoCarousel .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

#espacoCarousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#espacoCarousel .carousel-control-prev,
#espacoCarousel .carousel-control-next {
    background: linear-gradient(135deg, var(--accent-gold), #d4af37);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    opacity: 0.8;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

#espacoCarousel .carousel-control-prev:hover,
#espacoCarousel .carousel-control-next:hover {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

#espacoCarousel .carousel-control-prev {
    left: 20px;
}

#espacoCarousel .carousel-control-next {
    right: 20px;
}

#espacoCarousel .carousel-control-prev-icon,
#espacoCarousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

#espacoCarousel .carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

#espacoCarousel .carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    margin: 0 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#espacoCarousel .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

#espacoCarousel .carousel-indicators button.active {
    background-color: var(--accent-gold);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

#espacoCarousel .carousel-item {
    transition: transform 0.8s ease-in-out;
}

#espacoCarousel .carousel-item img {
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
    transition: filter 0.3s ease;
}

/* Estilo do carrossel de resultados - mesmo padrão do carrossel do espaço */
#resultadosCarousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#resultadosCarousel .carousel-control-prev,
#resultadosCarousel .carousel-control-next {
    background: linear-gradient(135deg, var(--accent-gold), #d4af37);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    opacity: 0.8;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

#resultadosCarousel .carousel-control-prev:hover,
#resultadosCarousel .carousel-control-next:hover {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

#resultadosCarousel .carousel-control-prev {
    left: 20px;
}

#resultadosCarousel .carousel-control-next {
    right: 20px;
}

#resultadosCarousel .carousel-control-prev-icon,
#resultadosCarousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

#resultadosCarousel .carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

#resultadosCarousel .carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    margin: 0 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#resultadosCarousel .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

#resultadosCarousel .carousel-indicators button.active {
    background-color: var(--accent-gold);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

#resultadosCarousel .carousel-item {
    transition: transform 0.8s ease-in-out;
}

#resultadosCarousel .carousel-item img {
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
    transition: filter 0.3s ease;
    max-height: 500px;
    object-fit: cover;
}

/* Seção Home - vai para o topo absoluto da página */
#home {
    scroll-margin-top: 0;
    padding-top: 0;
    margin-top: 0;
}

/* Ajuste específico para seção de serviços */
#servicos {
    scroll-margin-top: 70px;
    padding-top: 90px;
    margin-top: 0;
}

/* Ajuste para outras seções */
#contato, #resultados, #galeria, #depoimentos {
    scroll-margin-top: 80px;
    padding-top: 100px;
    margin-top: -20px;
}

/* Responsividade para tablets */
@media (max-width: 991.98px) {
    #servicos {
        scroll-margin-top: 60px;
        padding-top: 80px;
        margin-top: 0;
    }
    
    #contato, #resultados, #galeria, #depoimentos {
        scroll-margin-top: 70px;
        padding-top: 90px;
        margin-top: -20px;
    }
}

/* Responsividade para dispositivos móveis */
@media (max-width: 767.98px) {
    #servicos {
        scroll-margin-top: 50px;
        padding-top: 70px;
        margin-top: 0;
    }
    
    #contato, #resultados, #galeria, #depoimentos {
        scroll-margin-top: 60px;
        padding-top: 80px;
        margin-top: -10px;
    }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 575.98px) {
    #servicos {
        scroll-margin-top: 40px;
        padding-top: 60px;
        margin-top: 0;
    }
    
    #contato, #resultados, #galeria, #depoimentos {
        scroll-margin-top: 50px;
        padding-top: 70px;
        margin-top: -10px;
    }
    .service-icon svg {
      width: 35px;
      height: 35px;
      fill: var(--accent-gold);
      transition: all var(--transition-speed) ease;
    }

    /* Quando hover no card, deixar o SVG branco (como os ícones FontAwesome) */
    .service-card:hover .service-icon svg {
      fill: var(--primary-white);
    }
}
