/* ========================================
   CAROLINE POLICENO - CIDADANIA EUROPEIA
   Paleta: Bordô #6A0F1E | Dourado #C6A75E | Off-white #F4F1EC
   ======================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bordo: #6A0F1E;
    --dourado: #C6A75E;
    --off-white: #F4F1EC;
    --cinza: #5E5E5E;
    --branco: #FFFFFF;
    --fonte-principal: 'Cormorant Garamond', 'Georgia', serif;
    --fonte-secundaria: 'Montserrat', 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonte-secundaria);
    color: var(--cinza);
    line-height: 1.6;
    background-color: var(--branco);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4 {
    font-family: var(--fonte-principal);
    color: var(--bordo);
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    font-family: var(--fonte-secundaria);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--bordo);
    color: var(--branco);
    box-shadow: 0 4px 12px rgba(106, 15, 30, 0.2);
}

.btn-primary:hover {
    background-color: #4A0A14;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(106, 15, 30, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #25D366;
    border: 2px solid #25D366;
}

.btn-secondary:hover {
    background-color: #25D366;
    color: var(--branco);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Header */
.header {
    background-color: var(--branco);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--bordo);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--dourado);
}

.btn-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.btn-mobile-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--bordo);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background-color: var(--off-white);
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--bordo);
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--bordo);
    margin-top: 20px;
    margin-bottom: 0;
}

.hero-description {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--cinza);
    margin-top: 20px;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    animation: fadeInZoom 1s ease-out;
}

@keyframes fadeInZoom {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(106, 15, 30, 0.15);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Seções Gerais */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--cinza);
    max-width: 700px;
    margin: 20px auto 0;
}

/* Sobre */
.sobre {
    background-color: var(--off-white);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sobre-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    background-color: var(--branco);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--dourado);
}

.feature-item h3 {
    margin-bottom: 10px;
    color: var(--bordo);
    font-size: 1.3rem;
}

.feature-item p {
    line-height: 1.7;
}

/* Serviços */
.servicos {
    background-color: var(--branco);
}

.servicos-wrapper {
    position: relative;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.servico-card {
    background-color: var(--off-white);
    border-radius: 8px;
    border: 2px solid var(--dourado);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(106, 15, 30, 0.15);
}

.servico-card:hover h3 {
    color: var(--dourado);
}

.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content-full {
    padding: 40px 30px;
}

/* Botões do carrossel - escondidos no desktop */
.carousel-btn {
    display: none;
}

.carousel-dots {
    display: none;
}

/* Detalhes das bandeiras - linhas laterais sutis */
.cidadania-italiana .card-flag-detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #009246 33%, #FFFFFF 33%, #FFFFFF 66%, #CE2B37 66%);
    border-radius: 8px 0 0 8px;
}

.cidadania-portuguesa .card-flag-detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #006600 50%, #FF0000 50%);
    border-radius: 8px 0 0 8px;
}

.cidadania-espanhola .card-flag-detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #AA151B 40%, #F1BF00 40%, #F1BF00 60%, #AA151B 60%);
    border-radius: 8px 0 0 8px;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.card-icon img {
    width: 100%;
    height: 100%;
}

.servico-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card-content > p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.servico-list {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.servico-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.servico-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--dourado);
    font-weight: bold;
}

/* Benefícios */
.beneficios {
    background-color: var(--off-white);
}

.beneficios-wrapper {
    position: relative;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.beneficio-item {
    background-color: var(--branco);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(106, 15, 30, 0.1);
}

.beneficio-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.beneficio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beneficio-content {
    padding: 30px 25px;
}

.beneficio-content h3 {
    margin-bottom: 15px;
    color: var(--bordo);
    font-size: 1.3rem;
}

.beneficio-content p {
    line-height: 1.7;
    color: var(--cinza);
}

/* Botões do carrossel - escondidos no desktop */
.carousel-btn-beneficios {
    display: none;
}

.carousel-dots-beneficios {
    display: none;
}

/* Caroline Policeno */
.caroline {
    background-color: var(--branco);
}

.caroline-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.caroline-image {
    width: 100%;
    max-width: 500px;
    position: relative;
    margin-bottom: -80px;
    z-index: 1;
}

.caroline-image img {
    width: 100%;
    border-radius: 8px 8px 0 0;
    display: block;
}

.caroline-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 1) 100%);
    border-radius: 0 0 8px 8px;
}

.caroline-text {
    background-color: var(--branco);
    padding: 80px 40px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.caroline-text h2 {
    margin-bottom: 10px;
    text-align: center;
}

.caroline-subtitle {
    font-size: 1.2rem;
    color: var(--dourado);
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center !important;
    display: block;
}

.caroline-divider {
    width: 60px;
    height: 2px;
    background-color: var(--dourado);
    margin: 20px auto 30px;
}

.caroline-text p {
    margin-bottom: 20px;
    text-align: left;
}

.caroline-expertise {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.caroline-expertise li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.caroline-expertise li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--dourado);
    font-weight: bold;
}

.caroline-social {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--off-white);
    border-radius: 8px;
}

.social-cta {
    font-weight: 600;
    color: var(--bordo);
    margin-bottom: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
}

.social-link-instagram {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: var(--branco);
    border: 2px solid var(--dourado);
    border-radius: 50px;
    text-decoration: none;
    color: var(--bordo);
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link-instagram:hover {
    background-color: var(--dourado);
    color: var(--branco);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 167, 94, 0.3);
}

.social-link-instagram img {
    width: 28px;
    height: 28px;
}

/* Depoimentos */
.depoimentos {
    background-color: var(--off-white);
}

.depoimentos-wrapper {
    position: relative;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.depoimento-card {
    background-color: var(--branco);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(106, 15, 30, 0.1);
}

/* Botões do carrossel - escondidos no desktop */
.carousel-btn-depoimentos {
    display: none;
}

.carousel-dots-depoimentos {
    display: none;
}

.depoimento-aspas {
    font-size: 4rem;
    color: var(--dourado);
    line-height: 1;
    font-family: var(--fonte-principal);
    margin-bottom: 10px;
}

.depoimento-texto {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.depoimento-autor {
    border-top: 2px solid var(--off-white);
    padding-top: 20px;
}

.autor-nome {
    font-weight: 600;
    color: var(--bordo);
    margin-bottom: 5px;
}

.autor-info {
    font-size: 0.9rem;
    color: var(--cinza);
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--bordo) 0%, #4A0A14 100%);
    color: var(--branco);
    padding: 100px 0;
    text-align: center;
}

.cta-title {
    color: var(--branco);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--off-white);
}

.btn-cta-final {
    background-color: var(--dourado);
    color: var(--bordo);
    font-size: 1.1rem;
    padding: 18px 50px;
}

.btn-cta-final:hover {
    background-color: #B89647;
    transform: scale(1.05);
}

/* Contato */
.contato {
    background-color: var(--branco);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contato-form {
    background-color: var(--off-white);
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--bordo);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: var(--fonte-secundaria);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dourado);
}

.form-privacy {
    background-color: var(--branco);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    border-left: 4px solid var(--dourado);
}

.form-privacy p {
    font-size: 0.9rem;
    color: var(--cinza);
}

.btn-form {
    width: 100%;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.info-icon img {
    width: 100%;
    height: 100%;
}

.info-text h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.info-text a {
    color: var(--bordo);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--dourado);
}

/* Footer */
.footer {
    background-color: var(--bordo);
    color: var(--off-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 250px;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-about p {
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--dourado);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--off-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--dourado);
}

.footer-social h4 {
    color: var(--dourado);
    margin-bottom: 20px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background-color: var(--dourado);
    transform: translateY(-3px);
}

.footer-social-links img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* Responsividade */
@media (max-width: 968px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--branco);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-list.active {
        transform: translateX(0);
    }

    .btn-mobile-menu {
        display: flex;
    }

    .btn-mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .btn-mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .btn-mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-features {
        gap: 20px;
    }

    .feature-item {
        padding: 25px 20px;
    }

    .feature-item h3 {
        font-size: 1.2rem;
    }

    .feature-item p {
        font-size: 0.95rem;
    }

    .servicos-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 20px;
        padding: 0 20px 20px 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .servicos-grid::-webkit-scrollbar {
        display: none;
    }

    .servico-card {
        min-width: 90%;
        max-width: 90%;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 30px 25px;
    }

    .card-content-full {
        padding: 35px 30px;
    }

    .servico-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .card-content > p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .servico-list li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .carousel-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        background-color: var(--dourado);
        color: var(--bordo);
        border: none;
        border-radius: 50%;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        transition: all 0.3s ease;
    }

    .carousel-btn:hover {
        background-color: var(--bordo);
        color: var(--dourado);
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-btn.prev {
        left: 15px;
    }

    .carousel-btn.next {
        right: 15px;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 25px;
        padding: 0 20px;
    }

    .carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .carousel-dot.active {
        background-color: var(--dourado);
        width: 28px;
        border-radius: 6px;
        border-color: var(--bordo);
    }

    .beneficios-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 20px;
        padding: 0 20px 20px 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        grid-template-columns: none;
    }

    .beneficios-grid::-webkit-scrollbar {
        display: none;
    }

    .beneficio-item {
        min-width: 90%;
        max-width: 90%;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .beneficio-image {
        height: 220px;
    }

    .beneficio-content {
        padding: 30px 25px;
    }

    .beneficio-content h3 {
        font-size: 1.4rem;
    }

    .beneficio-content p {
        font-size: 1.05rem;
    }

    .carousel-btn-beneficios {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 35%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        background-color: var(--dourado);
        color: var(--bordo);
        border: none;
        border-radius: 50%;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        transition: all 0.3s ease;
    }

    .carousel-btn-beneficios:hover {
        background-color: var(--bordo);
        color: var(--dourado);
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-btn-beneficios.prev {
        left: 15px;
    }

    .carousel-btn-beneficios.next {
        right: 15px;
    }

    .carousel-dots-beneficios {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 25px;
        padding: 0 20px;
    }

    .carousel-dot-beneficio {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .carousel-dot-beneficio.active {
        background-color: var(--dourado);
        width: 28px;
        border-radius: 6px;
        border-color: var(--bordo);
    }

    .caroline-content {
        flex-direction: column;
        align-items: center;
    }

    .caroline-image {
        max-width: 100%;
        margin-bottom: -60px;
    }

    .caroline-text {
        padding: 60px 25px 30px;
    }

    .caroline-text p,
    .caroline-expertise {
        text-align: left;
    }

    .social-link-instagram {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .social-link-instagram img {
        width: 24px;
        height: 24px;
    }

    .depoimentos-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 20px;
        padding: 0 20px 20px 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .depoimentos-grid::-webkit-scrollbar {
        display: none;
    }

    .depoimento-card {
        min-width: 90%;
        max-width: 90%;
        scroll-snap-align: center;
        flex-shrink: 0;
        padding: 40px 30px;
    }

    .depoimento-aspas {
        font-size: 4.5rem;
        margin-bottom: 15px;
    }

    .depoimento-texto {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .autor-nome {
        font-size: 1.1rem;
    }

    .autor-info {
        font-size: 0.95rem;
    }

    .carousel-btn-depoimentos {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        background-color: var(--dourado);
        color: var(--bordo);
        border: none;
        border-radius: 50%;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        transition: all 0.3s ease;
    }

    .carousel-btn-depoimentos:hover {
        background-color: var(--bordo);
        color: var(--dourado);
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-btn-depoimentos.prev {
        left: 15px;
    }

    .carousel-btn-depoimentos.next {
        right: 15px;
    }

    .carousel-dots-depoimentos {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 25px;
        padding: 0 20px;
    }

    .carousel-dot-depoimento {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .carousel-dot-depoimento.active {
        background-color: var(--dourado);
        width: 28px;
        border-radius: 6px;
        border-color: var(--bordo);
    }

    .contato-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .social-links {
        flex-direction: column;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .contato-form {
        padding: 25px;
    }

    .logo img {
        height: 50px;
        max-width: 220px;
    }

    .footer-logo {
        height: 40px;
        max-width: 200px;
    }
}
