/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

/* Desabilitar formatação automática de telefone */
a[href^="tel:"] {
    color: inherit !important;
    text-decoration: none !important;
}

/* Remover formatação automática de telefone em parágrafos */
p:not(a) {
    color: inherit !important;
    text-decoration: none !important;
}

html, body {
    height: 100%;
    background: #111;
    color: #fff;
    scroll-behavior: auto !important;
}

/* Language Button */
.language-button-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: auto;
    height: auto;
}

.language-toggle {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 30px;
    padding: 4px;
    border: 2px solid #FFC300;
    box-shadow: 0 4px 15px rgba(255, 195, 0, 0.3);
    backdrop-filter: blur(10px);
    width: 120px;
    height: 40px;
}

.language-checkbox {
    display: none;
}

.language-slider {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 30px;
    overflow: hidden;
}

.lang-text {
    position: absolute;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.pt-text {
    left: 14px;
    opacity: 1;
}

.en-text {
    right: 14px;
    opacity: 1;
}

.slider-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    z-index: 1;
}

.slider-thumb {
    top: 2px;
    left: 2px;
    width: 56px;
    height: 32px;
    background: linear-gradient(135deg, #FFC300 0%, #D4AF37 100%);
    /* border-radius: 28px; */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 195, 0, 0.4);
    z-index: 2;
}

.language-checkbox:checked + .language-slider .slider-thumb {
    transform: translateX(60px);
}

.flag {
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.3s ease;
    opacity: 0;
}

.pt-flag {
    opacity: 1;
}

.language-checkbox:checked + .language-slider .pt-flag {
    opacity: 0;
}

.en-flag {
    opacity: 0;
}

.language-checkbox:checked + .language-slider .en-flag {
    opacity: 1;
}

@media (max-width: 768px) {
    .language-toggle {
        width: 100px;
        height: 35px;
    }
    
    .slider-thumb {
        width: 48px;
        height: 27px;
    }
    
    .language-checkbox:checked + .language-slider .slider-thumb {
        transform: translateX(50px);
    }
    
    .flag {
        font-size: 1rem;
    }
    
    .lang-text {
        font-size: 0.7rem;
    }
    
    .pt-text {
        left: 14px;
    }
    
    .en-text {
        right: 14px;
    }
}

@media (max-width: 480px) {
    .language-toggle {
        width: 90px;
        height: 32px;
    }
    
    .slider-thumb {
        width: 42px;
        height: 24px;
    }
    
    .language-checkbox:checked + .language-slider .slider-thumb {
        transform: translateX(44px);
    }
    
    .flag {
        font-size: 0.9rem;
    }
    
    .lang-text {
        font-size: 0.6rem;
    }
    
    .pt-text {
        left: 14px;
    }
    
    .en-text {
        right: 14px;
    }
}

body {
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header com imagem de fundo ocupando a tela visível */
.header {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    z-index: 1;
}

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

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

.logo-image {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: url('../img/bruno/bruno-amaral-tauador-corte.webp') no-repeat center center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.hero-container, .hero-content, .hero-content.header {
    position: relative;
    z-index: 2;
    background: none !important;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 100vh;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-content .highlight {
    color: #FFC300;
}

.hero-content h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-button {
    background: linear-gradient(135deg, #FFC300 0%, #D4AF37 100%);
    color: #fff;
    border: 2px solid #FFC300;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 195, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #FFC300 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 195, 0, 0.4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
}

.stat-item h4 {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.stat-item p {
    font-size: 2rem;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 700px) {
    .cta-section {
        padding: 2rem 0;
    }
}

.cta-button-large {
    background: linear-gradient(135deg, #FFC300 0%, #D4AF37 100%);
    color: #fff;
    border: 2px solid #FFC300;
    padding: 20px 50px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 195, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 700px) {
    .cta-button-large {
        background: #000;
        color: #fff;
        border: 3px solid #FFC300;
        padding: 15px 40px;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}

.cta-button-large:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #FFC300 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 195, 0, 0.5);
}

.cta-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.cta-stat-number, .cta-stat-k {
    font-size: 2.2rem;
    font-weight: bold;
    color: #FFC300;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.cta-stat-k {
    margin-left: 2px;
}

.cta-stat-label {
    font-size: 1rem;
    color: #fff;
    opacity: 0.85;
    text-align: center;
}

/* Feedbacks Section */
.feedbacks {
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.feedbacks h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.rating {
    text-align: center;
    margin-bottom: 3rem;
}

.rating i {
    color: #ffd700;
    font-size: 1.5rem;
    margin: 0 2px;
}

.rating span {
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 1rem;
}

.testimonials {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.testimonial {
    padding: 2rem;
    border-radius: 15px;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    color: #666;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-controls {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}





/* About Section */
.about {
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #333;
}

.about-subtitle {
    display: block;
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    color: #FFC300 !important;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.3rem !important;
    }
    
    .about-subtitle {
        margin-bottom: 0.1rem !important;
    }
    
    .about-text h2 {
        margin-bottom: 0.1rem !important;
    }
    
    .faq h2 {
        font-size: 1.5rem !important;
    }
    
    .process h2 {
        font-size: 1.5rem !important;
    }
    
    .feedbacks h2 {
        font-size: 1.5rem !important;
    }
    
    .text-4xl {
        font-size: 1.5rem !important;
    }
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-photo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
}

/* FAQ Section */
.faq {
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: #666;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.footer {
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #ccc;
    text-decoration: none;
    pointer-events: none;
}

/* Permitir links no rodapé, exceto telp-footer */
.footer-section p a {
    color: #fff !important;
    text-decoration: none !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    transition: color 0.3s, text-decoration 0.3s;
}

#telp-footer p a {
    color: #fff !important;
    text-decoration: none !important;
    pointer-events: none !important;
    cursor: default !important;
}

#telp-footer p a:hover {
    color: #fff !important;
    text-decoration: none !important;
}

.footer-section p a:hover,
.footer-section .fa-instagram-link:hover,
.footer-section .footer-map-link:hover {
    color: #FFC300 !important;
    text-decoration: none;
}

/* Desabilitar apenas o link de telefone */
.footer-section a.telp-footer {
    pointer-events: none !important;
    color: #ccc !important;
    text-decoration: none !important;
    cursor: default !important;
}

/* Garantir que parágrafos não sejam tratados como links */
.footer-section p:not(a) {
    color: #ccc !important;
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
    -moz-text-decoration: none !important;
    text-decoration-color: transparent !important;
    -webkit-text-decoration-color: transparent !important;
    -moz-text-decoration-color: transparent !important;
}

/* Remover formatação automática de telefone */
.footer-section p {
    color: #ccc !important;
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
    -moz-text-decoration: none !important;
    text-decoration-color: transparent !important;
    -webkit-text-decoration-color: transparent !important;
    -moz-text-decoration-color: transparent !important;
}

/* Remover formatação específica de telefone no mobile */
.footer-section p[class*="text-light"] {
    color: #ccc !important;
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
    -moz-text-decoration: none !important;
    text-decoration-color: transparent !important;
    -webkit-text-decoration-color: transparent !important;
    -moz-text-decoration-color: transparent !important;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #667eea;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #555;
    text-align: center;
    color: #ccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:not(.accept) {
    background: transparent;
    border: 1px solid;
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        height: 60vh;
    }
    .hero-container {
        padding: 0 15px;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .stat-item {
        padding: 1rem;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-text {
        display: contents;
    }
    .about-text h2,
    .about-text h3 {
        order: 1;
        text-align: center;
    }
    .about-image {
        order: 2;
        margin: 2rem 0;
        grid-column: 1;
    }
    .about-text p,
    .about-text button {
        order: 3;
        grid-column: 1;
    }
    .about-photo {
        width: 350px;
        height: 350px;
        border-radius: 0;
    }
    


}
    .testimonial-controls {
        flex-direction: column;
        gap: 1rem;
    }
    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
    }


@media (max-width: 480px) {
    .header {
        height: 100vh;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content h3 {
        font-size: 1.2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .stat-item {
        padding: 0.8rem;
    }

    .stat-item p {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 12px 24px;
    }

    .cta-button-large {
        padding: 15px 30px;
    }

    .process h2,
    .feedbacks h2,
    .faq h2 {
        font-size: 2rem;
    }

    .process-title {
        font-size: 2rem;
    }

    .process-content {
        padding: 30px 20px 60px;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .step {
        padding: 2rem;
    }

    .faq-question {
        padding: 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

    /* Garantir que parágrafos do footer não sejam azuis no mobile */
    .footer-section p {
        color: #ccc !important;
        text-decoration: none !important;
        -webkit-tap-highlight-color: transparent;
        -webkit-text-decoration: none !important;
        -moz-text-decoration: none !important;
        text-decoration-color: transparent !important;
        -webkit-text-decoration-color: transparent !important;
        -moz-text-decoration-color: transparent !important;
    }

    /* Remover formatação automática de telefone no mobile */
    .footer-section p[class*="text-light"] {
        color: #ccc !important;
        text-decoration: none !important;
        -webkit-text-decoration: none !important;
        -moz-text-decoration: none !important;
        text-decoration-color: transparent !important;
        -webkit-text-decoration-color: transparent !important;
        -moz-text-decoration-color: transparent !important;
        -webkit-tap-highlight-color: transparent;
    }
}

.container-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.7rem;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-header h1 {
    margin-bottom: 0.3rem;
}

.container-header h3 {
    margin-bottom: 1rem;
}

.tattoo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: .5rem .5rem;
}

.tattoo-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.tattoo-grid img:hover {
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .tattoo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .tattoo-grid {
        grid-template-columns: 1fr;
    }
    .tattoo-grid img {
        height: 180px;
    }
}

@media (max-width: 700px) {
    .hero {
        background: url('../img/bruno/Bruno_Amaral-Tatuador-corte.webp?v=1.1') no-repeat center center/cover !important;
        min-height: 60vh;
    }
    .hero-content {
        justify-content: flex-end;
    }
    .container-header {
        justify-content: flex-end;
        padding-bottom: 5vh;
        padding-top: 2vh;
    }
    .container-header h1 {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    .container-header h3 {
        font-size: 1rem;
    }
    .cta-button,
    .cta-button-large {
        font-size: 0.95rem;
        padding: 12px 18px;
    }
    .cta-stats {
        gap: 2rem 1rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    .cta-stat {
        min-width: auto;
        flex: 0 1 calc(50% - 0.5rem);
        text-align: center;
    }
    .cta-stat:nth-child(5) {
        flex: 0 1 100%;
        margin-top: 1rem;
    }
    .cta-stat-number, .cta-stat-k {
        font-size: 2.2rem;
        font-weight: bold;
        color: #FFC300;
        line-height: 1;
        margin-bottom: 0.3rem;
    }
    .cta-stat-label {
        font-size: 0.8rem;
        text-align: center;
        margin-top: 0.2rem;
        line-height: 1.2;
    }
    .testimonial-img {
        width: 90px;
        height: 90px;
    }
    .privacy-container {
        padding: 1.2rem 0.7rem;
    }
    h1, .container-header h1 {
        font-size: 1.2rem;
    }
    h2, .container-header h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
    }
    .hero-content {
        justify-content: flex-end;
    }
    .container-header {
        justify-content: flex-end;
        padding-bottom: 8vh;
        padding-top: 1vh;
    }
    .container-header h1 {
        font-size: 1rem;
    }
    .container-header h3 {
        font-size: 0.9rem;
    }
    .cta-button,
    .cta-button-large {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    .cta-stats {
        gap: 1.5rem 0.8rem;
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }
    .cta-stat {
        flex: 0 1 calc(50% - 0.4rem);
    }
    .cta-stat:nth-child(5) {
        flex: 0 1 100%;
        margin-top: 1rem;
    }
    .cta-stat-number, .cta-stat-k {
        font-size: 2rem;
        font-weight: bold;
        color: #FFC300;
        line-height: 1;
        margin-bottom: 0.3rem;
    }
    .cta-stat-label {
        font-size: 0.7rem;
        margin-top: 0.2rem;
        line-height: 1.2;
    }
}

.testimonial-carousel {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    min-height: 320px;
}

.testimonial-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: opacity 0.5s;
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.testimonial-slide.active {
    display: flex;
    opacity: 1;
    position: relative;
}

.testimonial-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.2rem;
    border: 3px solid #FFC300;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 0.7rem;
}

.testimonial-author {
    font-size: 1rem;
    color: #FFC300;
    font-weight: 500;
}

.fa-instagram-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.fa-instagram-link:hover .fa-instagram {
    color: #e1306c;
}
.fa-instagram-link:hover {
    color: #e1306c;
}

.footer-map-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-map-link:hover .fa-map-marker-alt {
    color: #e1306c;
}
.footer-map-link:hover {
    color: #e1306c;
}

/* Footer Phone Hover Effect */
.footer-phone-link {
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    pointer-events: auto !important;
}

.footer-phone-link:hover {
    color: var(--primary) !important;
    transform: translateY(-2px) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.footer-phone-link:hover .fa-phone {
    transform: scale(1.1) !important;
    transition: transform 0.3s ease !important;
}

/* Regra mais específica para garantir que o hover funcione */
.footer-section .footer-phone-link:hover {
    color: var(--primary) !important;
    transform: translateY(-2px) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.footer-section .footer-phone-link:hover .fa-phone {
    transform: scale(1.1) !important;
    transition: transform 0.3s ease !important;
}

.cookie-modal-bg {
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.cookie-modal {
    background: rgba(34,34,34,0.92);
    color: #fff;
    padding: 2rem 2.5rem;
    border-radius: 5px;
    max-width: 420px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    text-align: center;
}

.cookie-modal p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-btn.accept {
    background: linear-gradient(90deg, #FFC300 0%, #FF9800 100%);
    color: #222;
    border: none;
    padding: 0.7rem 1.7rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(255,195,0,0.10);
    transition: background 0.2s, color 0.2s;
}
.cookie-btn.accept:hover {
    background: linear-gradient(90deg, #FF9800 0%, #FFC300 100%);
    color: #fff;
}

.cookie-btn.refuse {
    background: linear-gradient(90deg, #444 0%, #222 100%);
    color: #fff;
    border: none;
    padding: 0.7rem 1.7rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
}
.cookie-btn.refuse:hover {
    background: linear-gradient(90deg, #222 0%, #444 100%);
    color: #FFC300;
}

.cookie-privacy-link {
    color: #FFC300;
    text-decoration: underline;
}
.cookie-privacy-link:hover {
    color: #fff;
}

.whatsapp-float {
    position: fixed;
    width: 62px;
    height: 62px;
    bottom: 28px;
    right: 28px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    z-index: 9999;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    animation: whatsapp-float-bounce 2.5s infinite;
    border: none;
}
.whatsapp-float:hover {
    box-shadow: 0 8px 32px rgba(37,211,102,0.25);
    transform: scale(1.08);
    color: #fff;
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

@keyframes whatsapp-float-bounce {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 6px 20px rgba(255, 195, 0, 0.3);
    }
    10% {
        transform: translateY(-6px);
        box-shadow: 0 8px 25px rgba(255, 195, 0, 0.4);
    }
    20% {
        transform: translateY(0);
        box-shadow: 0 6px 20px rgba(255, 195, 0, 0.3);
    }
    30% {
        transform: translateY(-3px);
        box-shadow: 0 7px 22px rgba(255, 195, 0, 0.35);
    }
    40% {
        transform: translateY(0);
        box-shadow: 0 6px 20px rgba(255, 195, 0, 0.3);
    }
}

/* Carrossel Mobile para Tatuagens */
.tattoo-carousel-mobile {
    display: none;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 2000px;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

.carousel-next-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFC300 0%, #D4AF37 100%);
    border: 2px solid #FFC300;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 195, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    z-index: 10;
    pointer-events: auto;
    font-weight: 600;
}

.carousel-next-btn:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #FFC300 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 195, 0, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 195, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 195, 0, 0.5);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 195, 0, 0.3);
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .tattoo-grid {
        display: none;
    }
    .tattoo-carousel-mobile {
        display: block;
    }
    .carousel-container {
        height: 350px;
    }
    .carousel-next-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 300px;
    }
    .carousel-next-btn {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
        bottom: 10px;
        right: 10px;
    }
}

/* Título da seção de tatuagens */
.tattoo-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .tattoo-section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .tattoo-section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }
}

/* Botão de alternância de idioma */
/* Removido o CSS do botão de alternância de idioma */

/* Removido o CSS do botão de alternância de idioma */

/* Video Testimonials Section */
.video-testimonials {
    padding: 40px 0;
    background: #111;
    color: #fff;
}

.video-testimonials .container {
    max-width: none;
    padding: 0;
}

.feedback-header {
    text-align: center;
    margin-bottom: 2rem;
}

.feedback-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.feedback-line .line {
    height: 2px;
    background: #FFC300;
    flex: 1;
    max-width: 100px;
}

.feedback-line .dot {
    width: 8px;
    height: 8px;
    background: #FFC300;
    border-radius: 50%;
    margin: 0 1rem;
}

.feedback-title {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.rating-stars {
    text-align: center;
    margin-bottom: 3rem;
}

.rating-stars i {
    color: #FFC300;
    font-size: 1.5rem;
    margin: 0 0.2rem;
}

.video-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.video-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    height: auto;
    width: auto;
    margin: 0 auto 30px auto;
}

.video-slide {
    transition: all 0.5s ease-in-out;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    height: auto;
}

.video-slide video,
.video-slide iframe {
    width: 100%;
    max-width: 90vw;
    height: auto;
    display: block;
    border-radius: 12px;
    aspect-ratio: 9/16;
}

.video-slide iframe {
    aspect-ratio: 9/16;
    height: auto;
    border-radius: 8px;
}

.video-info {
    padding: 10px;
    text-align: center;
    background: #000;
    color: #fff;
    border-radius: 0 0 8px 8px;
    display: none;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.client-location {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
}

.client-quote {
    font-style: italic;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Posicionamento dos vídeos */
.video-prev {
    transform: scale(0.7) translateX(-40px);
    opacity: 0.5;
    z-index: 1;
    max-width: 280px;
}

.video-active {
    transform: scale(1);
    opacity: 1;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    max-width: 90vw;
}

.video-next {
    transform: scale(0.7) translateX(40px);
    opacity: 0.5;
    z-index: 1;
    max-width: 280px;
}

/* Controles de navegação */
.video-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.video-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    }

.video-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.video-nav-btn:active {
    transform: translateY(0);
}

.video-nav-btn i {
    font-size: 1.1rem;
}

/* Indicadores */
.video-indicators {
    display: flex;
    gap: 8px;
}

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

.indicator.active {
    background: #FFC300;
    transform: scale(1.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsividade */
@media (max-width: 768px) {
    .video-container {
    flex-direction: column;
    gap: 20px;
    height: auto;
    width: auto;
    max-width: 100%;
    }
    
    .video-slide video,
    .video-slide iframe {
        max-width: 98vw;
        aspect-ratio: 9/16;
        height: 90vh !important;
        max-height: 90vh !important;
    }

    .video-prev,
    .video-next {
        display: none;
    }

    .video-active {
        transform: scale(1);
        opacity: 1;
        max-width: 100%;
        }

    .video-slide video,
    .video-slide iframe {
        max-width: 100%;
        aspect-ratio: 9/16;
    }

    .video-controls {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }

    .video-nav-btn {
    width: auto;
    padding: 6px 12px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .video-nav-btn span {
        display: none;
    }

    .video-nav-btn i {
        font-size: 1rem;
    }

    .video-indicators {
        order: 0;
    }
}

@media (max-width: 480px) {
    .video-testimonials {
    padding: 30px 0;
    }

    .video-container {
    height: auto;
    width: auto;
    }

    .video-slide video,
    .video-slide iframe {
    max-width: 98vw;
    aspect-ratio: 9/16;
    height: 85vh !important;
    max-height: 85vh !important;
    }

    .feedback-title {
    font-size: 1.8rem;
    }
    
    .rating-stars i {
    font-size: 1.3rem;
    }

    .video-prev,
    .video-next {
    display: none;
    }

    .video-info {
    padding: 15px;
    }

    .client-name {
    font-size: 1.1rem;
    }

    .client-quote {
    font-size: 0.9rem;
    }

    .video-controls {
    gap: 10px;
    }

    .video-nav-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    }

    .video-nav-btn i {
    font-size: 0.9rem;
    }

    .indicator {
    width: 10px;
    height: 10px;
    }
}

@media (max-width: 600px) {
    .video-container {
    min-height: unset;
    max-height: unset;
    height: auto;
    overflow: visible;
    }
    .video-slide video,
    .video-slide iframe {
    width: 98%;
    height: 80vh !important;
    object-fit: contain !important;
    max-height: 80vh !important;
    display: block;
    margin: 0 auto;
    }
}