/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ce6703;
    --primary-hover: #b25702;
    --secondary-color: #333333;
    --background-color: #f5f5f5;
    --white: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 1rem;
    --border-radius-lg: 1.5rem;
}

body {
    font-family: 'Candara Light', 'Candara', sans-serif;
    background: linear-gradient(90deg, #e5e5e5 0%, #ffffff 50%, #e5e5e5 100%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: visible;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: none;
}

html {
    background: linear-gradient(90deg, #e5e5e5 0%, #ffffff 50%, #e5e5e5 100%);
    min-height: 100vh;
    width: 100%;
    max-width: none;
    overflow-x: visible;
}

/* Tipografia */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Transições */
.hover-scale {
    transition: all 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.smooth-transition {
    transition: all 0.3s ease;
}

/* Header */
.header {
    background: #2c2c2c;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.banner-title {
    font-size: 5.46rem; /* 7.8rem - 30% = 5.46rem */
    line-height: 1;
    text-align: center;
}

.banner-container {
    display: inline-block;
    text-align: left;
}

.banner-subtitle {
    font-size: 1.26rem; /* 1.05rem + 20% = 1.26rem */
    text-align: right;
    margin-top: 1rem;
    margin-right: 0;
}


/* Hero Section */
.hero {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(206, 103, 3, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(206, 103, 3, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c00 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-hover) 0%, #e67e00 100%);
}

/* Galeria de imagens */
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0 0 0;
    background: transparent;
    padding: 3rem 3rem 1rem 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: none;
}

.gallery-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: none;
}

.gallery-item {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(206, 103, 3, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Elementos de texto da galeria */
.gallery-text-row {
    margin: 1rem 0;
}

.phrase-card {
    background: linear-gradient(90deg, #e5e5e5 0%, #ffffff 50%, #e5e5e5 100%);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 0 auto;
    max-width: 800px;
}

/* Container de vídeo */
.gallery-video-row {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    max-width: none;
    height: 375px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.video-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
}

.video-placeholder-content {
    text-align: center;
    z-index: 2;
}

.play-button {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Layout da primeira linha da galeria */
.gallery-main {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-main-item {
    width: 345px; /* 300px + 15% = 345px */
    height: 345px; /* Formato quadrado 1:1 */
    flex: 0 0 auto;
}

.gallery-main-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mantém a proporção original sem cortar */
    background: #f8f9fa; /* Fundo neutro para espaços vazios */
}

/* Layout responsivo para galeria de serviços */
.gallery-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem; /* Aumentado para dar mais espaço */
}

.gallery-services-item {
    width: 345px; /* Mesmo tamanho da primeira linha: 300px + 15% */
    height: 345px; /* Formato quadrado 1:1 */
    flex: 0 0 auto;
}

.gallery-services-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mantém a proporção original sem cortar */
    background: #f8f9fa; /* Fundo neutro para espaços vazios */
}

@media (max-width: 768px) {
    .gallery-main {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .gallery-main-item {
        width: 100%;
        max-width: 345px; /* Aumentado proporcionalmente */
        height: 345px; /* Formato quadrado mantido no mobile */
    }
    
    .gallery-services {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-services-item {
        width: 100%;
        max-width: 345px; /* Aumentado proporcionalmente */
        height: 345px; /* Formato quadrado mantido no mobile */
    }
    
    .video-placeholder {
        height: 312px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
}

/* Diferenciais */
.differentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem 1.5rem 2.5rem 1.5rem;
    margin-top: 0;
}

.differential-card {
    background: linear-gradient(90deg, #e5e5e5 0%, #ffffff 50%, #e5e5e5 100%);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.differential-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff8c00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.differential-card:hover::before {
    transform: scaleX(1);
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Seções */
.section {
    padding: 3rem 1.5rem;
    text-align: center;
}

.section-separator {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ce6703 50%, transparent 100%);
    margin: 2rem 0;
}

.section-white {
    background: transparent;
}

.section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section p {
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Formas de pagamento */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.payment-method {
    background: linear-gradient(90deg, #e5e5e5 0%, #ffffff 50%, #e5e5e5 100%);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-method:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c2c2c 100%);
    color: var(--white);
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.footer h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

/* Botões flutuantes */
.floating-buttons {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
    pointer-events: none;
}

.floating-button {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    pointer-events: all;
    position: relative;
    overflow: hidden;
}

.floating-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.floating-button:active::before {
    width: 100%;
    height: 100%;
}

.floating-button.instagram {
    background:     rgb(221, 42, 123) 
}

.floating-button.whatsapp {
    background:  rgb(37, 211, 102) 
}

.floating-button:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
}

.floating-button svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}


/* Responsividade */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2.1rem; /* 3rem - 30% = 2.1rem */
    }
    
    .banner-subtitle {
        font-size: 0.875rem; /* 1.25rem - 30% = 0.875rem */
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .gallery-row {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-item {
        width: 100%;
        max-width: 300px;
    }
    
    .differentials {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-buttons {
        left: 1rem;
        right: 1rem;
    }
    
    .floating-button {
        width: 3rem;
        height: 3rem;
    }
    
    .floating-button svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.75rem; /* 2.5rem - 30% = 1.75rem */
    }
    
    .banner-subtitle {
        font-size: 0.7rem; /* 1rem - 30% = 0.7rem */
    }
    
    .hero h2 {
        font-size: 1.25rem;
    }
    
    .section {
        padding: 2rem 1rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Estados de foco para acessibilidade */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}


/* Utilitários */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}
