@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif; /* Fallback para sans-serif se Montserrat não carregar */
    background-color: #1a1a1a; /* .bg-dark-custom */
    color: #e5e7eb; /* text-gray-200 (aproximado) */
    line-height: 1.6;
    
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem; /* px-6 aproximado */
    margin-top: 25px;
    
}

.container h3{
    color: #FFD700; 
    font-size: 10px;
    font-weight: 200;
}

.container h2{   
    font-weight: 200;
}


.container-avaliacao a{   
    color: #ffffff;
    font-weight: 200;
    text-decoration: none;
    font-size: 25px;
    background-color: #ffd700;
    border-radius: 15px;
    padding: 3px 15px;
}

/* Cores Customizadas */
.text-gold-custom {
    color: #FFD700; /* Bright Gold */
    
}
.bg-dark-custom {
    background-color: #1a1a1a;
}
.bg-black {
    background-color: #000000;
}
.border-gold-custom {
    border: 2px solid #DAA520;
}

/* Tipografia */
.title-font {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Ou 900 para um visual mais impactante */
}

/* Header e Navegação */
.site-header {
    background-color: #000000; /* bg-black */
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); /* shadow-lg */
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0.75rem 0; /* py-3 */
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.875rem; /* text-3xl */
    font-weight: bold;
    color: #FFD700; /* text-gold-custom */
    text-decoration: none;
}
.logo-highlight {
    color: #ffffff; /* text-white */
}
.main-nav {
    display: none; /* Escondido por padrão, visível em telas maiores */
}
@media (min-width: 768px) { /* md breakpoint */
    .main-nav {
        display: flex;
        gap: 1rem; /* space-x-4 */
    }
}
.menu-item {
    padding: 0.5rem 0.75rem; /* px-3 py-2 */
    border-radius: 0.375rem; /* rounded-md */
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    text-decoration: none;
    color: #e5e7eb; /* text-gray-200 aproximado */
    transition: color 0.3s ease, background-color 0.3s ease;
}
.menu-item:hover {
    color: #FFD700; /* Gold color for hover */
    background-color: #333; /* Darker background for hover */
}

/* Menu Mobile */
.mobile-menu-button-container {
    display: block;
}
@media (min-width: 768px) { /* md breakpoint */
    .mobile-menu-button-container {
        display: none;
    }
}
.mobile-menu-button {
    color: #d1d5db; /* text-gray-300 */
    background: none;
    border: none;
    font-size: 1.25rem; /* fa-lg */
    cursor: pointer;
    padding: 0.5rem;
}
.mobile-menu-button:hover {
    color: #FFD700;
}
.mobile-nav {
    display: none; /* hidden by default */
    background-color: #000000; /* bg-black */
}
.mobile-nav.active {
    display: block;
}
.mobile-menu-item {
    display: block;
    font-size: 1rem; /* text-base */
}


/* Seções */
.section {
    padding: 10px; /* py-16 */
    border-top: 1px dashed #E5B003;
    margin-bottom: 25px;
    margin-top: 25px;
}
.section-title {
    font-size: 2.25rem; /* text-4xl */
    font-weight: bold;
    margin-bottom: 2rem; /* mb-8 / mb-12 */
}
.section-paragraph {
    font-size: 1.125rem; /* text-lg */
    color: #d1d5db; /* text-gray-300 */
    line-height: 1.75; /* leading-relaxed */
    max-width: 48rem; /* max-w-3xl */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}
.section-image {
    margin-top: 2rem; /* mt-8 */
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); /* shadow-xl */
    display: block;
    max-width: 100%;
    height: auto;
}
.text-center {
    text-align: center;
}
.text-gray-400 {
    color: #9ca3af;
}

/* Carrossel */
.carousel-section {
    position: relative;
    height: 60vh;
    overflow: hidden;
}
@media (min-width: 768px) { /* md breakpoint */
    .carousel-section {
        height: 80vh;
    }
}
.carousel-container {
    position: relative;
    height: 100%;
}
.carousel-item {
    display: none;
    transition: opacity 1s ease-in-out;
    height: 100%;
    position: absolute;
    width: 100%;
}
.carousel-item.active {
    display: block;
    opacity: 1;
}
.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-caption {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}
.carousel-title {
    font-size: 2.25rem; /* text-4xl */
    color: #ffffff;
    font-weight: bold;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: #FFD700;
    padding: 0.75rem;
    border-radius: 9999px; /* rounded-full */
    font-size: 1.5rem; /* text-2xl */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.carousel-control:hover {
    background-color: rgba(0,0,0,0.75);
}
.carousel-control.prev {
    left: 1rem; /* left-4 */
}
.carousel-control.next {
    right: 1rem; /* right-4 */
}

/* Seção Hero com Carrossel */
.hero {
    padding: 0;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


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



.carousel-content {
    text-align: center;
    color: var(--light);
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease forwards;
}

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


.carousel-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-controls {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-prev,
.carousel-next {
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    margin: 0 15px;
    transition: var(--transition);
}

.carousel-prev:hover,
.carousel-next:hover {
    color: var(--accent);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}
/* --- Estilos para as Avaliações do Google --- */
.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.avaliacao-card {
    background-color: #1a1a1a; /* ATUALIZAÇÃO: Corrigido para o tema escuro */
    border: 1px solid #333;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    color: #e0e0e0; /* ATUALIZAÇÃO: Corrigido para o tema escuro */
}

.avaliacao-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fdd835;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: bold;
    font-size: 1.1em;
    color: #ffffff; /* ATUALIZAÇÃO: Corrigido para o tema escuro */
}

.rating {
    margin-top: 5px;
}

.rating i.fa-star {
    color: #fdd835;
}

.rating i.fa-star.far {
    color: #888; /* Cor para estrelas vazias */
}

.avaliacao-body {
    flex-grow: 1;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #e0e0e0; /* ATUALIZAÇÃO: Corrigido para o tema escuro */
}

.avaliacao-body p {
    margin: 0;
}

.avaliacao-footer {
    margin-top: auto; /* Empurra para o final */
    font-size: 0.9em;
    color: #888;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.avaliacao-footer a {
    color: #fdd835;
    text-decoration: none;
    transition: color 0.3s ease;
}

.avaliacao-footer a:hover {
    color: #fff;
}

@media (min-width: 768px) { /* md breakpoint */
    .carousel-content h2 {
        font-size: 2.5rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }

}

@media (max-width: 480px) {
    .carousel-content h2 {
        font-size: 2rem;
    }
}
/* Galeria */
.album-select-container {
    text-align: center;
    margin-bottom: 2rem; /* mb-8 */
}
.album-label {
    margin-right: 0.5rem;
    font-size: 1.125rem; /* text-lg */
    color: #d1d5db; /* text-gray-300 */
}
.album-select {
    background-color: #374151; /* bg-gray-800 (aproximado) */
    border: 1px solid #DAA520; /* border-gold-custom */
    color: #FFD700; /* text-gold-custom */
    font-size: 0.875rem; /* text-sm */
    border-radius: 0.5rem; /* rounded-lg */
    padding: 0.625rem; /* p-2.5 */
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem; /* gap-6 */
    
}
@media (min-width: 640px) { /* sm breakpoint */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) { /* md breakpoint */
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) { /* lg breakpoint */
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-thumbnail {
    width: 100%;
    height: 16rem; /* h-64 */
    object-fit: cover;
    border-radius: 0.5rem; /* rounded-lg */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}
.gallery-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); /* Gold shadow */
    border-color: #DAA520; /* hover:border-gold-custom */
}

/* Modal da Galeria */
/* ATUALIZAÇÃO 1 DE 2: Centralização com Flexbox */
.modal {
    
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    /* Adicionado para centralização */
    /*/display: flex;*/
    align-items: center;
    justify-content: center;
}
/* ATUALIZAÇÃO 2 DE 2: Limites e comportamento da imagem */
.modal-content-img {
    display: block;
    margin: auto;
    /* Limita o tamanho para nunca tocar as bordas da tela */
    max-width: 90vw;
    max-height: 90vh;
    /* Garante que a imagem caiba sem distorcer ou cortar */
    object-fit: contain;
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.close-modal:hover,
.close-modal:focus {
    color: #bbb;
    text-decoration: none;
}
.modal-nav-btn { /* Renomeado de .modal-nav */
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -25px; /* Ajustado para alinhar melhor */
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.modal-nav-btn.prev-modal { left: 0; border-radius: 3px 0 0 3px;}
.modal-nav-btn.next-modal { right: 0; border-radius: 0 3px 3px 0;}
.modal-nav-btn:hover { background-color: rgba(255,215,0,0.4); }


/* Vídeos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem; /* gap-8 */
}
@media (min-width: 768px) { /* md breakpoint */
    .video-grid { grid-template-columns: repeat(2, 1fr); }
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); /* shadow-xl */
}
.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Formulário de Orçamento */
.form {
    max-width: 42rem; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff; /* bg-gray-900 (aproximado) */
    padding: 2rem; /* p-8 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); /* shadow-2xl */
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* gap-6 */
    margin-bottom: 1.5rem; /* mb-6 */
}
@media (min-width: 768px) { /* md breakpoint */
    .form-grid { grid-template-columns: repeat(2, 1fr); }
}
.form-group {
    margin-bottom: 1.5rem; /* mb-6 */
}
.form-label {
    display: block;
    margin-bottom: 0.5rem; /* mb-2 */
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    color: #d1d5db; /* text-gray-300 */
}
.form-input, .form-select, .form-textarea {
    /*background-color: #374151;  bg-gray-800 (aproximado) */
    border: 1px solid #4b5563; /* border-gray-600 (aproximado) */
    color: #e5e7eb; /* text-gray-200 (aproximado) */
    font-size: 0.875rem; /* text-sm */
    border-radius: 0.5rem; /* rounded-lg */
    display: block;
    width: 100%;
    padding: 0.625rem; /* p-2.5 */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #DAA520; /* focus:border-gold-custom */
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.3); /* focus:ring-gold-custom (aproximado) */
}
.form-textarea {
    min-height: 6rem;
}
.btn {
    font-weight: 600; /* font-semibold */
    padding: 0.75rem 1.25rem; /* py-3 px-5 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); /* shadow-md */
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
    width: 100%; /* w-full */
    display: block;
}
.btn-gold {
    background-color: #D7C45D; /* Darker Gold */
    color: black;
}
.btn-gold:hover {
    background-color: #CC9200; /* Lighter Gold */
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); /* hover:shadow-lg */
}
.form-message-container {
    margin-top: 1.5rem; /* mt-6 */
    text-align: center;
}
.form-message-container .text-red-500 { color: #ef4444; }
.form-message-container .text-green-400 { color: #4ade80; }


/* Contato */
.contact-info {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600; /* font-semibold */
    margin-bottom: 0.5rem; /* mb-2 */
}
.contact-info i { /* Se for usar FontAwesome localmente */
    margin-right: 0.5rem;
}

/* Rodapé */
.site-footer-bottom { /* Renomeado de .footer */
    background-color: #000000; /* bg-black */
    color: #9ca3af; /* text-gray-400 */
    padding: 3rem 0; /* py-12 */
    border-top: 3px solid #d4af37; /* cor dourada, tom claro */
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5); /* sombra superior */
}
.footer-logo-container {
    margin-bottom: 10px; /* mb-6 */
}
.footer-logo {
    font-size: 1.5rem; /* text-2xl */
}
.footer-tagline {
    font-size: 15px; /* text-sm */
    margin-top: 15px; /* mt-2 */
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem; /* space-x-6 */
    margin-bottom: 1.5rem; /* mb-6 */
}
.social-link {
    color: #9ca3af; /* text-gray-400 */
    text-decoration: none;
    font-size: 1.5rem; /* text-2xl - para ícones */
    transition: color 0.3s ease;
}
.social-link:hover {
    color: #FFD700; /* hover:text-gold-custom */
}
.copyright-text {
    font-size: 0.875rem; /* text-sm */
}
.dev-credit {
    font-size: 0.75rem; /* text-xs */
    margin-top: 0.25rem; /* mt-1 */
}
.dev-credit i { /* Se for usar FontAwesome localmente para o coração */
    color: #FFD700;
}


/* Scrollbar (opcional, mas mantido do original) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #2c2c2c;
}
::-webkit-scrollbar-thumb {
    background: #DAA520;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FFD700;
}

/* Seção Contato */
.contato {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.95), rgba(58, 12, 163, 0.9)), url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light);
}

.contato .section-header h2 {
    color: var(--light);
}

.contato-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contato-info {
    /*flex: 0;*/
    min-width: 300px;
}

.contato-info h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.info-item i {
    font-size: 15px;
    color: var(--accent);
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.info-item p {
    font-size: 15px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: var(--transition);
    text-decoration: none;
}


.social-icon:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

.contato-form {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-strong);
}
.form{
    background-color: #ffd70069;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-color: #FFD700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: ;
    box-shadow: 0 0 0 2px rgba(76, 201, 240, 0.3);
    
}



.form-group select:hover{
    border-color: #DAA520;
    background-color: #DAA520;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-form {
    width: 100%;
    background: var(--gradient-2);
}

.btn-form:hover {
    background: var(--gradient-2);
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    /*//width: 32px;*/
    height: 32px;
    filter: invert(1); /* deixa o ícone branco */
}

/* Avaliações */

.avalicoes {
    border-top: 1px dashed #E5B003;
}

.avaliacoes-grid img {
    
    border-top: 1px dashed #E5B003;
}


.avaliacoes-grid a{
    text-decoration: none;
    text-align: center;
    color: #bba21e;
    font-size: 20px;   
}

.avalicao{   
     font-size: 25px;   
    text-decoration: none;
    border-radius: 10px;
    padding: 6px 2pc;
    text-align: center;
    margin: 10px 20%;
    background-color: #ffd700;
    
}
.avalicao a{   
    text-decoration: none;
}



@media (max-width: 900px) { /* md breakpoint */ 
    .avaliacoes-grid img {
        /*width: 49%;*/
        border-top: 1px dashed #E5B003;
    }
}

@media (max-width: 600px) { /* md breakpoint */ 
    .avaliacoes-grid img {
        
        border-top: 1px dashed #E5B003;
    }
}
/* Seção Serviços Nova */
#servicos {
    background-color: #000000; /* Fundo branco para a seção */
    padding: 60px 10px;
    color: #333; /* Cor de texto padrão para a seção */
    border-radius: 15px;
}

/* Título e subtítulo da seção */
#servicos .section-title {
    color: #FFD700; /* Cor preta/cinza escuro para o título principal */
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#servicos .section-subtitle {
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #FFD700;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Grid que alinha os cards */
.services-grid {
    display: grid;
    /* Cria 3 colunas em telas grandes, 2 em médias e 1 em pequenas */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; /* Espaçamento entre os cards */
}

/* Estilo do Card de serviço */
.service-item {
    background-color: #F8F9FA; /* Fundo cinza bem claro para o card */
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef; /* Borda sutil */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Círculo do ícone */
.service-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto; /* Centraliza e adiciona espaço abaixo */
    border-radius: 50%; /* Deixa o container redondo */
    background-color: #ffd700; /* Cor de fundo do círculo (turquesa) */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ícone dentro do círculo */
.service-icon-container i {
    font-size: 36px;
    color: #ffffff; /* Ícone branco */
}

/* Título do serviço */
.service-item h3 {
    font-size: 1.25rem;
    color: #343a40;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Descrição do serviço */
.service-item p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
}

/* Container principal do carrossel */
.my-carousel-container {
    position: relative;
    width: 100%; /* Ocupa toda a largura do elemento pai */
    max-width: 90%; /* Você pode ajustar ou remover conforme seu layout */
    /*margin: 0 auto;  Centraliza o carrossel na página */
    overflow: hidden;

}

/* Faixa que segura os itens e se move */
.my-carousel-track {
    display: flex;
    transition: transform 0.5s ease; /* Transição suave */
}

/* Cada item (avaliação) do carrossel */
.my-carousel-item {
    /* Por padrão, mostra 3 itens visíveis */
    flex: 0 0 calc(100% / 3); 
    box-sizing: border-box;
    padding: 0 0px; /* Espaçamento horizontal entre os itens */
}

.my-carousel-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* Proporção 16:9 */
    object-fit: cover;
    border-radius: 8px;
    display: block; /* Remove pequenos espaços em branco abaixo da imagem */
}

/* --- ESTILOS PARA TELAS MENORES (MENOS DE 768px) --- */
@media (max-width: 768px) {
    .my-carousel-item {
        /* Mostra apenas 1 item por vez */
        flex: 0 0 100%; 
        padding: 0 5px; /* Ajusta o espaçamento para telas menores */
    }
}

/* Botões de navegação */
.my-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5em;
    border-radius: 50%;
    z-index: 20;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.my-carousel-button.prev {
    left: 15px; /* Ajustado para não ficar colado na borda */
}

.my-carousel-button.next {
    right: 15px; /* Ajustado para não ficar colado na borda */
}

.my-carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}


/* Estilo do Botão Flutuante de Telefone (AGORA NA ESQUERDA) */
.floating-phone-button {
    position: fixed; /* Posição fixa na tela */
    bottom: 20px;    /* Distância do fundo */
    left: 30px;      /* <<< MUDANÇA AQUI: de 'right' para 'left' */
    width: 60px;     /* Largura */
    height: 60px;    /* Altura */
    background-color: #4373D5; /* Cor de fundo */
    color: #FFF;     /* Cor do ícone (branco) */
    border-radius: 50%; /* Deixa o botão redondo */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra */
    z-index: 1000;     /* Garante que fique acima de outros elementos */
    transition: all 0.3s ease; /* Transição suave */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Efeito ao passar o mouse por cima */
.floating-phone-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ATUALIZAÇÃO 3 DE 3: Bloco de Media Query para Celular Adicionado ao Final */
@media (max-width: 768px) {
    .avaliacoes-grid {
        /* Em telas menores, força uma única coluna */
        grid-template-columns: 1fr;
        padding: 0 15px; /* Adiciona um respiro nas laterais */
    }

    .whatsapp-button, .floating-phone-button {
        width: 50px;
        height: 50px;
    }
}