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

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.btn-primary {
    display: inline-block;
    background-color: #D7642A;
    color: white;
    padding: 15px 40px;
    border-radius: 0;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #D7642A;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #FAA002;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn-primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(215, 100, 42, 0.2);
}

.btn-primary:hover:before {
    left: 0;
}

.highlight {
    color: white;
    font-weight: 700;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #C86437;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    padding: 10px 0;
    background-color: #C86437;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header.scrolled .logo-img {
    height: 50px;
}

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

.desktop-menu {
    display: flex;
    gap: 40px;
}

.nav a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
    color: white;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav a:hover {
    color: rgba(255, 255, 255, 0.8);
}

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

.btn-contato {
    background-color: transparent;
    color: white !important;
    padding: 8px 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

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

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #C86437;
    z-index: 1001;
    padding: 80px 40px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu a {
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

/* Seção Hero */
.hero {
    height: 100vh;
    position: relative;
    background: url('modedentro.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 0;
    overflow: hidden;
}

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

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

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .highlight {
    font-size: 56px;
}

.separator {
    width: 100%;
    height: 1px;
    background-color: rgba(215, 100, 42, 0.2);
    margin: 25px 0;
    position: relative;
}

.separator span {
    position: absolute;
    top: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #D7642A;
}

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
    font-weight: 500;
}

.hero-content p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    font-weight: 400;
}

.hero-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.endereco {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.endereco i {
    color: white;
    margin-right: 8px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #D7642A;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-content {
        padding: 50px;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        padding: 40px;
        max-width: 550px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content h1 .highlight {
        font-size: 42px;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        padding: 30px;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h1 .highlight {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .hero-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 25px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h1 .highlight {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 22px;
    }
    
    .hero-content:before {
        display: none;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 12px;
    }
}

/* Seção Categorias */
.categorias {
    padding: 100px 0;
    background-color: #fff;
}

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

.section-header h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-header .separator {
    margin: 0 auto;
    width: 80px;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.categoria-item {
    background-color: #fff;
    padding: 0 0 30px 0;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.categoria-item:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #C86437;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.categoria-item:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.categoria-carousel {
    width: 100%;
    margin: 0 auto 0;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    margin-bottom: 20px;
    height: 300px;
    user-select: none;
    background-color: #f9f9f9;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-color: #f5f5f5;
    z-index: 1;
}

.carousel-item.active {
    opacity: 1;
    z-index: 2;
}

.categoria-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    background-color: #f9f9f9;
    max-height: 100%;
    max-width: 100%;
}

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

.carousel-controls {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    z-index: 20;
    pointer-events: none;
}

.categoria-carousel:hover .carousel-controls {
    opacity: 1;
}

.carousel-control {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #D7642A;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    opacity: 1;
    font-size: 1rem;
    pointer-events: auto;
    position: relative;
    z-index: 30;
}

.carousel-control:hover {
    background-color: rgba(215, 100, 42, 0.8);
    color: white;
    opacity: 1;
}

.carousel-indicators {
    display: flex;
    gap: 8px;
    pointer-events: auto;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.indicator.active {
    background-color: #D7642A;
    opacity: 1;
}

.img-placeholder span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #C86437;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    opacity: 0.7;
}

.categoria-item:hover .img-placeholder {
    background-color: rgba(200, 100, 55, 0.2);
}

.categoria-item h3 {
    font-size: 20px;
    margin: 0 15px 10px;
    padding-top: 20px;
    color: #333;
    font-weight: 600;
}

.categoria-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 15px;
    margin-bottom: 15px;
    display: block;
    overflow: visible;
    text-overflow: initial;
}

@media (max-width: 992px) {
    .categorias {
        padding: 80px 0;
    }
    
    .categorias-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .categorias {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}

/* Estilos para os botões sociais */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 0;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp {
    background-color: #25D366;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 53, 132, 0.3);
}

.social-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
}

.social-content {
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 576px) {
    .social-content {
        padding: 15px;
    }
    
    .social-btn {
        padding: 12px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .categorias-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .categoria-item {
        padding: 0 0 25px 0;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .categoria-carousel {
        height: 350px; /* Altura fixa para mobile */
        margin-bottom: 15px;
    }
}

/* Estilos para a seu00e7u00e3o Sobre Nu00f3s */
.sobre-nos-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.sobre-nos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    z-index: -2;
}

.sobre-nos-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(209, 77, 114, 0.03) 0%, rgba(209, 77, 114, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.sobre-nos-section .container {
    position: relative;
}

.sobre-nos-section .container::before {
    content: '“';
    position: absolute;
    top: -80px;
    left: -20px;
    font-size: 180px;
    font-family: 'Cormorant Garamond', serif;
    color: rgba(209, 77, 114, 0.04);
    line-height: 1;
    z-index: -1;
}

.sobre-nos-content {
    display: flex;
    align-items: center;
    gap: 100px;
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
}

.sobre-nos-text {
    flex: 0 0 50%;
    padding-right: 20px;
    position: relative;
    z-index: 1;
}

.sobre-nos-text h2 {
    font-size: 42px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
    color: #1A1A1A;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.2;
}

.sobre-nos-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: #D14D72;
}

.sobre-nos-text p {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
    font-weight: 400;
    position: relative;
}

.sobre-nos-text p:last-of-type {
    margin-bottom: 0;
}

.sobre-nos-image {
    flex: 0 0 45%;
    position: relative;
    z-index: 1;
}

.sobre-nos-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(209, 77, 114, 0.15);
    z-index: 0;
}

.sobre-nos-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 70%;
    height: 70%;
    background-color: rgba(209, 77, 114, 0.03);
    z-index: -1;
}

.loja-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.loja-image:hover {
    transform: scale(1.02);
}

.sobre-nos-buttons {
    margin-top: 45px;
    position: relative;
}

.sobre-nos-buttons::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: rgba(209, 77, 114, 0.3);
}

.btn-visitar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: transparent;
    border: 1px solid #D14D72;
    color: #D14D72;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.btn-visitar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #D14D72;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-visitar:hover {
    color: white;
}

.btn-visitar:hover::after {
    left: 0;
}

@media (max-width: 1200px) {
    .sobre-nos-content {
        gap: 60px;
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .sobre-nos-section {
        padding: 100px 0;
    }
    
    .sobre-nos-section .container::before {
        font-size: 140px;
        top: -60px;
    }
    
    .sobre-nos-content {
        flex-direction: column;
        gap: 70px;
    }
    
    .sobre-nos-text {
        flex: 0 0 100%;
        padding-right: 0;
        order: 2;
        text-align: center;
    }
    
    .sobre-nos-text h2 {
        margin-bottom: 30px;
    }
    
    .sobre-nos-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }
    
    .sobre-nos-buttons::before {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    .sobre-nos-image {
        flex: 0 0 100%;
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .sobre-nos-section {
        padding: 80px 0;
    }
    
    .sobre-nos-section .container::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .sobre-nos-section {
        padding: 60px 0;
    }
    
    .sobre-nos-text h2 {
        font-size: 32px;
    }
    
    .sobre-nos-text p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .sobre-nos-image::before,
    .sobre-nos-image::after {
        display: none;
    }
    
    .btn-visitar {
        width: 100%;
        padding: 14px 20px;
    }
}

/* Estilos para a seu00e7u00e3o Diferenciais */
.diferenciais-section {
    padding: 140px 0;
    background-color: #fafafa;
    position: relative;
    overflow: hidden;
}

.diferenciais-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(209, 77, 114, 0.01) 0%, transparent 60%);
    z-index: 0;
}

.diferenciais-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 80%, rgba(209, 77, 114, 0.01) 0%, transparent 60%);
    z-index: 0;
}

.diferenciais-section .container {
    position: relative;
    z-index: 1;
}

.diferenciais-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.diferenciais-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: #1A1A1A;
    display: inline-block;
    position: relative;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.diferenciais-header .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #555;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.diferenciais-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 20px;
    background-color: rgba(209, 77, 114, 0.3);
}

.diferenciais-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: #D14D72;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.diferencial-item {
    position: relative;
    padding: 50px 35px;
    background-color: #fff;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.diferencial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: #D14D72;
    transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.diferencial-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 40px 40px;
    border-color: transparent transparent rgba(209, 77, 114, 0.03) transparent;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 0;
}

.diferencial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.diferencial-item:hover::before {
    height: 100%;
}

.diferencial-item:hover::after {
    border-width: 0 0 60px 60px;
}

.diferencial-numero {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 200;
    color: rgba(209, 77, 114, 0.04);
    position: absolute;
    top: 15px;
    right: 15px;
    line-height: 0.8;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 0;
}

.diferencial-item:hover .diferencial-numero {
    color: rgba(209, 77, 114, 0.08);
    transform: scale(1.1) translateY(-5px);
}

.diferencial-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1A1A1A;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
    padding-bottom: 10px;
}

.diferencial-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: rgba(209, 77, 114, 0.2);
    transition: width 0.3s ease;
}

.diferencial-item:hover h3 {
    color: #D14D72;
}

.diferencial-item:hover h3::after {
    width: 50px;
    background-color: rgba(209, 77, 114, 0.4);
}

.diferencial-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
    max-width: 95%;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .diferenciais-grid {
        padding: 0 30px;
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .diferenciais-section {
        padding: 120px 0;
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .diferencial-item {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .diferenciais-section {
        padding: 100px 0;
    }
    
    .diferenciais-header {
        margin-bottom: 70px;
    }
    
    .diferenciais-header h2 {
        font-size: 38px;
    }
    
    .diferenciais-header .subtitle {
        font-size: 15px;
    }
    
    .diferencial-numero {
        font-size: 64px;
    }
    
    .diferencial-item {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .diferenciais-section {
        padding: 80px 0;
    }
    
    .diferenciais-header {
        margin-bottom: 50px;
    }
    
    .diferenciais-header h2 {
        font-size: 32px;
    }
    
    .diferenciais-header .subtitle {
        font-size: 14px;
        letter-spacing: 0.5px;
        padding: 0 20px;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .diferencial-item {
        padding: 35px 25px;
    }
    
    .diferencial-item::after {
        border-width: 0 0 30px 30px;
    }
    
    .diferencial-item:hover::after {
        border-width: 0 0 40px 40px;
    }
    
    .diferencial-numero {
        font-size: 56px;
        top: 15px;
        right: 15px;
    }
    
    .diferencial-item h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .diferencial-item p {
        max-width: 100%;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .categoria-item h3 {
        font-size: 20px;
        margin: 0 15px 10px;
        padding-top: 15px;
    }
    
    .categoria-item p {
        font-size: 13px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 15px;
        line-height: 1.5;
    }
    
    .carousel-control {
        width: 32px;
        height: 32px;
        font-size: 12px;
        opacity: 1;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
}

/* Estilos para a seção Para Quem */
.para-quem-section {
    padding: 140px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.para-quem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(209, 77, 114, 0), rgba(209, 77, 114, 0.1), rgba(209, 77, 114, 0));
}

.para-quem-section::after {
    content: '"';
    position: absolute;
    bottom: 40px;
    right: 5%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 300px;
    font-weight: 300;
    color: rgba(209, 77, 114, 0.02);
    line-height: 0;
    z-index: 0;
    pointer-events: none;
}

.para-quem-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.para-quem-text {
    flex: 0 0 45%;
    padding-right: 20px;
    position: relative;
}

.para-quem-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1A1A1A;
    position: relative;
    max-width: 90%;
}

.para-quem-text h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: rgba(209, 77, 114, 0.3);
}

.para-quem-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-weight: 400;
}

.para-quem-signature {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.para-quem-signature span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    color: #D14D72;
    margin-bottom: 10px;
}

.signature-line {
    width: 120px;
    height: 1px;
    background-color: rgba(209, 77, 114, 0.2);
}

.para-quem-image {
    flex: 0 0 50%;
    position: relative;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-container:hover {
    transform: rotate(0deg);
}

.founders-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-container:hover .founders-image {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(209, 77, 114, 0.1), rgba(209, 77, 114, 0));
    pointer-events: none;
}

.image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 70%;
    height: 70%;
    border-top: 1px solid rgba(209, 77, 114, 0.2);
    border-left: 1px solid rgba(209, 77, 114, 0.2);
    z-index: -1;
}

.image-container::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 70%;
    height: 70%;
    border-bottom: 1px solid rgba(209, 77, 114, 0.2);
    border-right: 1px solid rgba(209, 77, 114, 0.2);
    z-index: -1;
}

@media (max-width: 1200px) {
    .para-quem-content {
        padding: 0 30px;
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .para-quem-section {
        padding: 100px 0;
    }
    
    .para-quem-content {
        flex-direction: column-reverse;
        gap: 60px;
    }
    
    .para-quem-text {
        flex: 0 0 100%;
        padding-right: 0;
        text-align: center;
    }
    
    .para-quem-text h2::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .para-quem-signature {
        align-items: center;
    }
    
    .para-quem-image {
        flex: 0 0 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .para-quem-section {
        padding: 80px 0;
    }
    
    .para-quem-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .para-quem-section {
        padding: 60px 0;
    }
    
    .para-quem-text h2 {
        font-size: 30px;
    }
    
    .para-quem-text p {
        font-size: 15px;
    }
    
    .image-container::before,
    .image-container::after {
        display: none;
    }
}

/* Estilos para a seção Experiência */
.experiencia-section {
    padding: 0 0 100px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border-top: 1px solid rgba(215, 100, 42, 0.05);
    border-bottom: 1px solid rgba(215, 100, 42, 0.05);
}

.experiencia-header {
    background-color: #fff;
    padding: 100px 0 50px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.experiencia-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background-color: rgba(215, 100, 42, 0.3);
}

.experiencia-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.experiencia-header h2 span {
    color: #D7642A;
}

.experiencia-header .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #555;
    max-width: 600px;
    line-height: 1.7;
    position: relative;
}

.experiencia-content {
    display: flex;
    position: relative;
}

.experiencia-cards {
    padding: 60px 0;
    position: relative;
}

.card-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.experiencia-card {
    background-color: #fff;
    border: 1px solid rgba(215, 100, 42, 0.08);
    border-radius: 4px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex: 1;
    max-width: 350px;
    position: relative;
    overflow: hidden;
}

.experiencia-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, rgba(215, 100, 42, 0.7), rgba(215, 100, 42, 0.3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.experiencia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(215, 100, 42, 0.15);
}

.experiencia-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(215, 100, 42, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 32px;
    color: #D7642A;
    transition: all 0.3s ease;
}

.experiencia-card:hover .card-icon {
    background-color: rgba(215, 100, 42, 0.1);
    transform: scale(1.1) rotate(5deg);
}

.experiencia-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 15px;
    position: relative;
}

.experiencia-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.experiencia-cta {
    margin-top: 50px;
    text-align: center;
}

.btn-experiencia {
    display: inline-block;
    padding: 16px 36px;
    background-color: #D7642A;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    box-shadow: 0 10px 20px rgba(215, 100, 42, 0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-experiencia::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

.btn-experiencia:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(215, 100, 42, 0.3);
}

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

@media (max-width: 1200px) {
    .card-row {
        gap: 20px;
    }
    
    .experiencia-card {
        padding: 30px 25px;
    }
}

@media (max-width: 992px) {
    .experiencia-header {
        padding: 80px 30px 40px;
        text-align: center;
    }
    
    .experiencia-header h2 {
        font-size: 38px;
    }
    
    .experiencia-header .subtitle {
        margin: 0 auto;
    }
    
    .experiencia-cards {
        padding: 40px 0;
    }
    
    .card-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .experiencia-card {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .experiencia-header {
        padding: 60px 20px 30px;
    }
    
    .experiencia-header h2 {
        font-size: 36px;
    }
    
    .experiencia-header .subtitle {
        font-size: 15px;
    }
    
    .experiencia-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .card-icon i {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .experiencia-section {
        padding: 0 0 70px;
    }
    
    .experiencia-header {
        padding: 50px 20px 30px;
    }
    
    .experiencia-header h2 {
        font-size: 32px;
    }
    
    .experiencia-cards {
        padding: 30px 0;
    }
    
    .experiencia-card {
        padding: 25px 20px;
    }
    
    .experiencia-card h3 {
        font-size: 22px;
    }
    
    .experiencia-card p {
        font-size: 14px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .card-icon i {
        font-size: 24px;
    }
}

/* Estilos para a seção Call to Action */
.cta-section {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(254, 227, 236, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.cta-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.cta-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: #1A1A1A;
    position: relative;
    display: inline-block;
}

.cta-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: #D7642A;
}

.cta-header h2 span {
    color: #D7642A;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.cta-image {
    flex: 0 0 45%;
    position: relative;
}

.cta-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.6s ease;
}

.cta-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 1px solid #D7642A;
    border-left: 1px solid #D7642A;
    z-index: -1;
    opacity: 0.5;
}

.cta-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 1px solid #D7642A;
    border-right: 1px solid #D7642A;
    z-index: -1;
    opacity: 0.5;
}

.cta-info {
    flex: 0 0 45%;
    padding-right: 20px;
}

.cta-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D7642A;
    margin-bottom: 20px;
}

.cta-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.cta-benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(215, 100, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-icon i {
    color: #D7642A;
    font-size: 12px;
}

.benefit-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background-color: #25D366;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp i {
    margin-right: 10px;
    font-size: 18px;
}

.btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.25);
    color: #fff;
}

/* Estilos para a seção Localização */
.localizacao-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.localizacao-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.localizacao-info {
    flex: 0 0 40%;
}

.localizacao-mapa {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.localizacao-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 40px;
    position: relative;
}

.localizacao-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: #D7642A;
}

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

.info-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-block h3 i {
    color: #D7642A;
    margin-right: 10px;
    font-size: 20px;
}

.info-block p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    padding-left: 30px;
}

.contato-direto {
    margin-top: 40px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #D7642A;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-link i {
    margin-right: 10px;
    font-size: 20px;
}

.phone-link:hover {
    color: #1A1A1A;
}

/* Estilos para a seção Instagram Feed */
.instagram-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.instagram-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.instagram-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #D7642A;
    margin: 25px auto 0;
    border-radius: 2px;
}

.instagram-feed {
    margin-bottom: 60px;
}

.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    aspect-ratio: auto;
    height: auto;
}

.instagram-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.instagram-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(215, 100, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    color: #fff;
    font-size: 28px;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.instagram-item:hover .instagram-overlay i {
    transform: scale(1);
}

.instagram-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #fff;
    color: #1A1A1A;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-instagram i {
    margin-right: 10px;
    font-size: 18px;
    color: #D7642A;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #D7642A;
    color: #1A1A1A;
}

@media (max-width: 992px) {
    .instagram-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 80px 0;
    }
    
    .instagram-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .instagram-section {
        padding: 60px 0;
    }
    
    .instagram-header h2 {
        font-size: 32px;
    }
    
    .instagram-header .subtitle {
        font-size: 15px;
    }
    
    .instagram-gallery {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    
    .btn-instagram {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Estilos para o Rodapé */
.footer {
    background-color: #1A1A1A;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.footer-logo p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 250px;
    line-height: 1.6;
}

.footer-links h4, .footer-social h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #D7642A;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #D7642A;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media (max-width: 1200px) {
    .localizacao-content {
        gap: 30px;
    }
}

@media (max-width: 1200px) {
    .cta-content {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-header h2 {
        font-size: 38px;
    }
    
    .cta-content {
        flex-direction: column;
    }
    
    .cta-info, .cta-image {
        flex: 0 0 100%;
    }
    
    .cta-info {
        padding-right: 0;
        margin-top: 40px;
    }
    
    .localizacao-section {
        padding: 80px 0;
    }
    
    .localizacao-content {
        flex-direction: column;
    }
    
    .localizacao-info {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }
    
    .localizacao-mapa {
        flex: 0 0 100%;
    }
    
    .footer-content {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-logo {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .footer-links, .footer-social {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-header h2 {
        font-size: 36px;
    }
    
    .cta-image::before,
    .cta-image::after {
        width: 70px;
        height: 70px;
    }
    
    .cta-tagline {
        font-size: 13px;
    }
    
    .cta-description {
        font-size: 15px;
    }
    
    .localizacao-section {
        padding: 60px 0;
    }
    
    .localizacao-section h2 {
        font-size: 36px;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-header {
        margin-bottom: 30px;
    }
    
    .cta-header h2 {
        font-size: 32px;
    }
    
    .cta-image::before,
    .cta-image::after {
        width: 50px;
        height: 50px;
    }
    
    .cta-info {
        margin-top: 30px;
    }
    
    .cta-tagline {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    
    .cta-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .benefit-item {
        margin-bottom: 15px;
    }
    
    .benefit-item p {
        font-size: 14px;
    }
    
    .btn-whatsapp {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .localizacao-section {
        padding: 50px 0;
    }
    
    .localizacao-section h2 {
        font-size: 32px;
    }
    
    .info-block h3 {
        font-size: 22px;
    }
    
    .info-block p {
        font-size: 15px;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links, .footer-social {
        flex: 0 0 100%;
    }
}
