/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #782c24;
    --primary-dark: #5a211b;
    --primary-light: #8f362d;
    --secondary-color: #a85751;
    --accent-color: #d4938f;
    --text-color: #2D3436;
    --light-gray: #f8f4f3;
    --white: #ffffff;
    --dark-gray: #2D3436;
    --success-color: #782c24;
    --font-primary: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
}

/* Navbar */
.navbar {
    background-color: var(--white);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

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

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

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

.phone-number {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 95vh;
    overflow: hidden;
    background-color: var(--dark-gray);
}

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

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(70, 15, 15, 0.716);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    height: 90%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
}

.hero-text {
    max-width: 600px;
    color: var(--white);
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.cta-button:not(.outline) {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-button.outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 3;
    width: auto;
}

.hero-logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

/* Serviços Section */
.servicos {
    padding: 4rem 5%;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.servicos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.servico-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    animation: scaleIn 0.6s ease-out backwards;
}

.servico-card.wide {
    grid-column: span 1;
}

.servico-content {
    text-align: center;
    margin-top: 1.5rem;
}

.servico-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.servico-content p:hover {
    color: var(--primary-color);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.servico-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .servico-card.wide {
        grid-column: span 1;
    }

    .servico-card {
        padding: 2rem;
    }

    .servico-content p {
        font-size: 0.9rem;
    }
    .cta-button {
        text-align: center
      }
}

/* Sobre Section */
.sobre {
    padding: 4rem 5%;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.sobre-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.sobre-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 4rem;
}

.sobre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Removido o filtro escuro que estava sobrepondo a imagem */

.sobre-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sobre-content h2 {
    font-size: inherit;
    color: inherit;
    margin-bottom: inherit;
    text-align: inherit;
    position: inherit;
    display: inherit;
}

.sobre-content h3 {
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.sobre-content p {
    color: #636E72;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.8;
}

.label {
    color: #636E72;
    font-weight: 500;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .sobre-image {
        height: 300px;
    }

    .sobre-content h2 {
        font-size: 2.2rem;
    }

    .sobre-content p {
        font-size: 1.1rem;
    }

    .sobre-lista {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 1.5rem;
    }

    .sobre-lista li {
        padding: 2rem;
        min-height: 150px;
    }

    .numeros {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .numero {
        font-size: 2.5rem;
    }
}

/* Contato Section */
.contato {
    padding: 4rem 5%;
    background-color: var(--light-gray);
    text-align: center;
}

.contato-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contato .section-header {
    margin-bottom: 2.5rem;
}

.contato .section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.contato-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    min-width: 200px;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out backwards;
}

/* Torna o link dentro do card totalmente clicável, sem sublinhado */
.info-item > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    min-width: 200px;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out backwards;
    text-decoration: none; /* Remove o sublinhado do link */
}

/* Links inline (ex.: telefone) herdam a cor do texto e sem sublinhado */
.contato .info-item p a {
    color: inherit;
    text-decoration: none;
}

.contato .info-item p a:hover {
    color: inherit;
    text-decoration: none;
}

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

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.info-item:hover i {
    transform: scale(1.2);
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.info-item p {
    color: #636E72;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contato-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contato-form input,
.contato-form textarea,
.contato-form select {
    padding: 1rem;
    border: 1px solid #DFE6E9;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contato-form input:focus,
.contato-form textarea:focus,
.contato-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(120, 44, 36, 0.1);
}

.contato-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-info p {
    color: #f1f1f1;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: transform 0.3s ease; /* Removed color transition */
}

.social-links a:hover {
    transform: translateY(-3px); /* Keep only the transform effect */
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #bbbbba;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-content,
    .sobre-container,
    .contato-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sobre-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sobre-image {
        min-height: 400px;
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 0.75rem;
        background-color: var(--white);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
    }

    .logo {
        display: none;
    }

    .corner-logo-link {
        position: static;
        display: block;
        margin: 0 auto 0.75rem auto;
        z-index: 1000;
        order: -1;
    }
    
    .corner-logo {
        width: 100px;
        height: auto;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        width: 100%;
        padding: 0;
        margin: 0;
        order: 1;
    }

    .nav-links a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }

    .contact-info {
        display: none;
    }

    .hero {
        height: 100vh;
        padding-top: 120px;
    }

    .hero-content {
        padding-top: 2rem;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .numeros {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
    }

    .carousel-button i {
        font-size: 1rem;
    }

    .contato-container {
        padding: 0 1rem;
    }
    
    .contato-info {
        gap: 3rem;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .servico-card {
        padding: 2rem;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .icon-wrapper i {
        font-size: 1.8rem;
    }

    .servico-card h3 {
        font-size: 1.4rem;
    }

    .servico-list li {
        font-size: 0.9rem;
    }

    .sobre-image {
        height: 300px;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-button i {
    color: var(--white);
    font-size: 1.2rem;
}

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

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: scrollArrow 2s infinite;
}

.scroll-arrow:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-arrow:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollArrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Valores Section */
.valores {
    padding: 8rem 5%;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.valor-card {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    animation: scaleIn 0.6s ease-out backwards;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.valor-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.valor-card .icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.valor-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.valor-card p {
    color: #636E72;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .valores-grid {
        grid-template-columns: 1fr;
    }
}

/* Ajuste para as outras seções (evita sobreposição após mudanças de padding) */
.valores .scroll-indicator,
.sobre .scroll-indicator,
.servicos .scroll-indicator {
    position: static;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    left: auto;
    transform: none;
    width: 100%;
}

.valores .scroll-arrow,
.sobre .scroll-arrow,
.servicos .scroll-arrow {
    border-color: var(--primary-color);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Aplicando animações aos elementos */
.hero-text h1 {
    animation: fadeInUp 1s ease-out;
}

.hero-text p {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.valor-card, .servico-card {
    animation: scaleIn 0.6s ease-out backwards;
    transition: transform 0.3s ease;
}

.valor-card:hover, .servico-card:hover {
    transform: translateY(-10px);
}

.icon-wrapper {
    animation: float 3s ease-in-out infinite;
}

.icon-wrapper i {
    transition: transform 0.3s ease;
}

.valor-card:hover .icon-wrapper i,
.servico-card:hover .icon-wrapper i {
    transform: scale(1.2);
}

.info-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.info-item:nth-child(1) { animation-delay: 0.2s; }
.info-item:nth-child(2) { animation-delay: 0.4s; }
.info-item:nth-child(3) { animation-delay: 0.6s; }
.info-item:nth-child(4) { animation-delay: 0.8s; }


/* Animação para os números */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.numero {
    animation: countUp 1s ease-out forwards;
}

/* Animação para o logo na navbar */
.logo img {
    transition: transform 0.3s ease;
}

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

/* Animação para os links do menu */
.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info .fa-whatsapp {
    color: #25D366;
    font-size: 1.2em;
}

.contact-info .fa-envelope {
    color: var(--primary-color);
    font-size: 1.2em;
}

.contact-info span {
    font-size: 0.9em;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease-out;   
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.accept-btn:hover {
    background-color: var(--secondary-color);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Corner Logo */
.corner-logo-link {
    position: fixed;
    top: 10px;
    left: 40px;
    z-index: 1001;
    display: block;
    transition: all 0.3s ease;
}

.corner-logo {
    width: 220px;
    height: auto;
    transition: all 0.3s ease;
}

.corner-logo-link:hover .corner-logo {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 0.75rem;
        background-color: var(--white);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
    }

    .logo {
        display: none;
    }

    .corner-logo-link {
        position: static;
        display: block;
        margin: 0 auto 0.75rem auto;
        z-index: 1000;
        order: -1;
    }
    
    .corner-logo {
        width: 100px;
        height: auto;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        width: 100%;
        padding: 0;
        margin: 0;
        order: 1;
    }

    .nav-links a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }

    .contact-info {
        display: none;
    }

    .hero {
        height: 100vh;
        padding-top: 120px;
    }

    .hero-content {
        padding-top: 2rem;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .numeros {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
    }

    .carousel-button i {
        font-size: 1rem;
    }

    .contato-container {
        padding: 0 1rem;
    }
    
    .contato-info {
        gap: 3rem;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .servico-card {
        padding: 2rem;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .icon-wrapper i {
        font-size: 1.8rem;
    }

    .servico-card h3 {
        font-size: 1.4rem;
    }

    .servico-list li {
        font-size: 0.9rem;
    }

    .sobre-image {
        height: 300px;
    }
}

/* Favicon styling */
link[rel="icon"] {
    border-radius: 50%;
    overflow: hidden;
}

 