/**
 * Phoenix Painting - Landing Page Stylesheet
 * Color Palette: Navy (#1a3a5f), White (#FFFFFF), Gold/Orange (#FF6B35)
 */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #1a3a5f;
    --primary-navy-dark: #0f2542;
    --primary-navy-light: #2a4a6f;
    --primary-white: #FFFFFF;
    --accent-gold: #FF6B35;
    --accent-gold-light: #FF8C42;
    --accent-gold-dark: #E55A2B;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F5F5F5;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
    --shadow-glow: rgba(255, 107, 53, 0.3);
    --border-radius: 12px;
    --border-radius-large: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    color: var(--primary-white);
    box-shadow: 0 4px 16px rgba(26, 58, 95, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow-glow);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow-glow);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.15rem;
    border-radius: var(--border-radius-large);
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--shadow-glow);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-offer {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    box-shadow: 0 6px 20px var(--shadow-glow);
    animation: pulse-glow 2.5s ease-in-out infinite;
    position: relative;
}

.btn-offer::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    border-radius: var(--border-radius-large);
    z-index: -1;
    opacity: 0.5;
    animation: pulse-ring 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 6px 20px var(--shadow-glow);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 8px 28px rgba(255, 107, 53, 0.5);
    }
}

@keyframes pulse-ring {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0;
    }
}

.btn-header {
    padding: 12px 28px;
    font-size: 0.95rem;
    border-radius: 8px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    color: var(--primary-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
}

/* ===== STICKY HEADER ===== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    width: 100%;
    overflow: hidden;
    max-width: 100vw;
    box-sizing: border-box;
    height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.header-content > * {
    flex-shrink: 0;
}

.header-actions {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.qr-link-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    color: var(--primary-white);
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(26, 58, 95, 0.3);
    position: relative;
    overflow: hidden;
}

.qr-link-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.qr-link-header:hover::before {
    width: 100px;
    height: 100px;
}

.qr-link-header:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(26, 58, 95, 0.4);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
}


.btn-header {
    position: relative;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    margin: 0 auto;
    flex-direction: row;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-link:hover .logo-text {
    color: var(--accent-gold);
}

/* Logo imagem - oculto em todas as versões */
.logo-image {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    pointer-events: none !important;
}

.logo-text {
    display: block !important;
    visibility: visible !important;
    font-weight: 700;
    color: var(--primary-navy);
    transition: color 0.3s ease;
    font-size: 1.8rem;
    opacity: 1 !important;
}

.logo h1 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin: 0;
}

.btn-header {
    padding: 10px 25px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* ===== HERO SECTION ===== */
.hero-section {
    margin-top: 100px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2a4a6f 100%);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23FF6B35" opacity="0.1" width="1200" height="800"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-gold);
    display: block;
    margin-top: 10px;
}

.hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-cta {
    margin-top: 30px;
}

.hero-phone {
    margin-top: 15px;
    font-size: 1.1rem;
}

.hero-phone a {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-phone a:hover {
    color: var(--accent-gold-light);
}

.hero-image {
    position: relative;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(26, 58, 95, 0.8) 100%);
}

.hero-image:hover {
    transform: scale(1.01);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 95, 0.6) 0%, rgba(255, 107, 53, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.placeholder-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.trust-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--primary-white);
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-headline {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 50px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-card {
    background: var(--primary-white);
    padding: 45px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.trust-card h3 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.trust-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== DETAILED SERVICES SECTION ===== */
.detailed-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.section-subheadline {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.detailed-service-item {
    display: flex;
    align-items: center;
    background: var(--primary-white);
    padding: 22px 28px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 5px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.detailed-service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    transition: width 0.3s ease;
}

.detailed-service-item:hover::before {
    width: 100%;
}

.detailed-service-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-left-color: var(--accent-gold-light);
}

.service-check {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.service-name {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

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

.service-card {
    background: var(--primary-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.service-card:hover .service-image {
    transform: scale(1.03);
}

.service-image.interior {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-image.exterior {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-image.commercial {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.service-placeholder {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* ===== OFFER SECTION ===== */
.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-white);
    text-align: center;
}

.offer-headline {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.offer-subheadline {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.offer-details {
    max-width: 800px;
    margin: 0 auto 40px;
}

.offer-checkmarks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.checkmark-item {
    font-size: 1.1rem;
    font-weight: 600;
}

.offer-value {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 30px;
}

.offer-cta {
    margin-top: 40px;
}

.offer-phone {
    margin-top: 20px;
    font-size: 1.1rem;
}

.offer-phone a {
    color: var(--primary-white);
    font-weight: 600;
    text-decoration: underline;
}

.offer-note {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.gallery-category {
    margin-bottom: 50px;
}

.gallery-category h3 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 4/3;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition);
    background: var(--primary-white);
    max-height: 240px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 95, 0) 0%, rgba(255, 107, 53, 0) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.gallery-item:hover::before {
    background: linear-gradient(135deg, rgba(26, 58, 95, 0.3) 0%, rgba(255, 107, 53, 0.2) 100%);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    display: block;
}

/* Lazy loading styles */
img.lazy-image {
    opacity: 0.3;
    filter: blur(5px);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

img.lazy-image.loaded {
    opacity: 1;
    filter: blur(0);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 58, 95, 0.95) 0%, rgba(26, 58, 95, 0.7) 50%, transparent 100%);
    color: white;
    padding: 18px 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== SERVICE AREAS SECTION ===== */
.service-areas-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-area-card {
    background: var(--primary-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.service-area-card h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 10px;
}

.service-area-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-area-card ul {
    list-style: none;
    padding: 0;
}

.service-area-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.service-area-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-areas-cta {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--primary-white);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
}

.service-areas-cta p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.service-areas-cta a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-areas-cta a:hover {
    color: var(--primary-navy);
    text-decoration: underline;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.process-step h3 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--primary-white);
    padding: 35px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent-gold);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: rgba(255, 107, 53, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-left-color: var(--accent-gold-light);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.star {
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-navy);
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== LEAD FORM SECTION ===== */
.lead-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2a4a6f 100%);
    color: var(--primary-white);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.form-content h2 {
    color: var(--primary-white);
    margin-bottom: 30px;
}

#leadFormElement {
    background: var(--primary-white);
    padding: 45px;
    border-radius: var(--border-radius-large);
    color: var(--text-dark);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: var(--accent-gold);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--primary-white);
    color: var(--text-dark);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover {
    border-color: #c0c0c0;
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
}

.form-privacy {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.form-alternative {
    margin-top: 20px;
    text-align: center;
}

.form-alternative a {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-alternative a:hover {
    color: var(--accent-gold-light);
}

.form-benefits {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.form-benefits h3 {
    color: var(--primary-white);
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 12px 0;
    color: var(--primary-white);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-message {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
}

.form-message.success {
    background-color: #4CAF50;
    color: white;
    display: block;
}

.form-message.error {
    background-color: #f44336;
    color: white;
    display: block;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-headline {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.cta-subheadline {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 30px;
    font-weight: 600;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    margin-bottom: 30px;
}

.cta-phone {
    margin-top: 30px;
}

.phone-link {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 600;
}

.phone-hours {
    margin-top: 10px;
    color: var(--text-light);
}

.cta-urgency {
    margin-top: 30px;
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(135deg, #1a3a5f 0%, #0f2542 100%);
    color: var(--primary-white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-column {
    position: relative;
}

.footer-column:first-child {
    padding-right: 20px;
}

.footer-logo-link {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-logo-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.footer-logo {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    pointer-events: none !important;
}

.footer-logo-link:hover .footer-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
}

.footer-column h3 {
    color: var(--primary-white);
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.footer-column h4 {
    color: var(--primary-white);
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-column p:first-of-type {
    font-weight: 600;
    color: var(--primary-white);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    transition: transform 0.2s ease;
}

.footer-column ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-column ul li:hover {
    transform: translateX(5px);
}

.footer-column ul li:hover::before {
    transform: translateX(3px);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--accent-gold);
    transform: translateX(3px);
}

.footer-column a[href^="tel:"] {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--accent-gold);
}

.footer-column a[href^="tel:"]:hover {
    color: var(--accent-gold-light);
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
}

.footer-column a[href^="mailto:"] {
    color: rgba(255, 255, 255, 0.9);
}

.footer-offer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.footer-badge {
    margin-top: 20px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    color: var(--primary-white);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-bottom p {
    margin: 8px 0;
}

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-gold-light);
    text-decoration: underline;
}

/* Footer Button Styles */
.footer-column .btn {
    margin-top: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.footer-column .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.footer-column .btn-small {
    padding: 12px 25px;
    font-size: 0.95rem;
}

/* Footer Service Areas Styling */
.footer-column p strong {
    color: var(--accent-gold);
    font-weight: 700;
}

/* Footer QR Code Button */
.footer-column p a[href*="contact-qr"] {
    display: inline-block;
    margin-top: 10px;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 95, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 14px 20px;
    margin: 0 6px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-white);
    border-radius: var(--border-radius);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.5px;
}

.mobile-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.mobile-cta a:active {
    transform: translateY(0);
}

.mobile-phone {
    background: var(--primary-white) !important;
    color: var(--primary-navy) !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        height: 320px;
        margin-top: 30px;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-benefits {
        margin-top: 30px;
    }
    
    .mobile-cta {
        display: flex;
    }
    
    .offer-headline {
        font-size: 2rem;
    }
    
    .section-headline {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .logo-image {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    .logo-text {
        display: block !important;
        visibility: visible !important;
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--primary-navy);
    }
    
    .btn-header {
        position: static;
        margin-top: 10px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 70px;
        padding: 60px 0;
    }
    
    .social-sharing-section {
        padding: 40px 0;
    }
    
    .social-sharing-content {
        gap: 25px;
    }
    
    .social-share-buttons {
        gap: 12px;
    }
    
    .social-share-btn {
        padding: 12px 22px;
        font-size: 0.9rem;
        min-width: 130px;
    }
    
    .sticky-header {
        padding: 10px 0;
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-area-card {
        padding: 20px;
    }
    
    /* Remover completamente a imagem do logo no mobile */
    .logo-image {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        pointer-events: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Garantir que apenas o texto apareça */
    .logo-text {
        display: block !important;
        visibility: visible !important;
        font-size: 1.4rem;
        margin-left: 0 !important;
    }
    
    /* Remover espaço do logo-link quando imagem está oculta */
    .logo-link {
        gap: 0 !important;
    }
        font-weight: 700;
        color: var(--primary-navy);
        margin: 0;
        opacity: 1 !important;
    }
    
    .logo-link {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    
    .logo {
        width: auto;
    }
    
    /* Footer logo - remover imagem no mobile, manter apenas texto */
    .footer-logo {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        pointer-events: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .footer-logo-link {
        margin-bottom: 0 !important;
    }
    
    .footer-logo-link {
        margin-bottom: 15px;
    }
    
    .footer-column h3 {
        margin-top: 0;
    }
    
    .hero-image {
        height: 280px;
    }
    
    .service-image {
        height: 150px;
    }
    
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .trust-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column:first-child {
        padding-right: 0;
    }
    
    .footer-column h3::after,
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .main-footer {
        padding: 60px 0 25px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-category h3 {
        font-size: 1.5rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .service-areas-section {
        padding: 60px 0;
    }
    
    .service-area-card {
        padding: 15px;
    }
    
    .service-area-card h3 {
        font-size: 1.3rem;
    }
    
    .btn-large {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .hero-headline {
        font-size: 1.5rem;
    }
    
    .social-sharing-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .social-sharing-text {
        font-size: 1rem;
        width: 100%;
        text-align: center;
        padding-right: 0;
        padding-bottom: 10px;
    }
    
    .social-sharing-text::after {
        display: none;
    }
    
    .social-share-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .social-share-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 120px;
        flex: 0 1 calc(50% - 6px);
        max-width: 160px;
    }
    
    .social-share-btn span {
        display: inline;
    }
    
    .social-share-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .social-profile-buttons {
        justify-content: center;
    }
    
    .social-profile-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .offer-headline {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    /* Remover completamente a imagem do logo no mobile pequeno */
    .logo-image {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        pointer-events: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Garantir que apenas o texto apareça */
    .logo-text {
        display: block !important;
        visibility: visible !important;
        font-size: 1.2rem;
        margin-left: 0 !important;
    }
    
    /* Remover espaço do logo-link quando imagem está oculta */
    .logo-link {
        gap: 0 !important;
        justify-content: center !important;
    }
        font-weight: 700;
        color: var(--primary-navy);
        margin: 0;
        opacity: 1 !important;
    }
    
    .logo-link {
        flex-direction: row;
        gap: 0 !important;
        justify-content: center;
    }
    
    .logo {
        width: auto;
    }
    
    .sticky-header {
        padding: 6px 0;
    }
    
    .hero-section {
        margin-top: 80px;
    }
    
    /* Footer logo - remover imagem no mobile pequeno, manter apenas texto */
    .footer-logo {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        pointer-events: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .footer-logo-link {
        margin-bottom: 0 !important;
        display: none !important;
    }
    
    .footer-logo-link {
        margin-bottom: 10px;
    }
    
    .footer-column h3 {
        font-size: 1.5rem;
        margin-top: 0;
    }
    
    .footer-column h4 {
        font-size: 1.2rem;
    }
    
    .footer-offer {
        font-size: 1.2rem;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
    }
    
    .btn-header {
        padding: 8px 15px;
        font-size: 0.9rem;
        position: static;
    }
    
    .header-actions {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .qr-link-header {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
    
    .header-content {
        flex-direction: row;
        gap: 10px;
        position: relative;
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--accent-gold);
    transform: scale(1.2);
}

.lightbox-caption {
    color: white;
    font-size: 1.2rem;
    margin-top: 20px;
    text-align: center;
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== FORM VALIDATION STYLES ===== */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
    border-color: #f44336;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown) {
    border-color: #4CAF50;
}

/* ===== SOCIAL SHARING SECTION ===== */
.social-sharing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.social-sharing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
}

.social-sharing-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
    max-width: 900px;
    margin: 0 auto;
}

.social-sharing-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.3px;
    position: relative;
    padding-right: 20px;
}

.social-sharing-text::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
}

.social-share-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-share-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.social-share-btn:hover::before {
    width: 300px;
    height: 300px;
}

.social-share-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.social-share-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.social-share-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.social-share-btn span {
    position: relative;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.social-share-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #166FE5 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-share-btn.facebook:hover {
    background: linear-gradient(135deg, #166FE5 0%, #1460D9 100%);
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4);
}

.social-share-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #1A91DA 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-share-btn.twitter:hover {
    background: linear-gradient(135deg, #1A91DA 0%, #1781C8 100%);
    box-shadow: 0 8px 24px rgba(29, 161, 242, 0.4);
}

.social-share-btn.linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #006399 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-share-btn.linkedin:hover {
    background: linear-gradient(135deg, #006399 0%, #005587 100%);
    box-shadow: 0 8px 24px rgba(0, 119, 181, 0.4);
}

.social-share-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #22C55E 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-share-btn.whatsapp:hover {
    background: linear-gradient(135deg, #22C55E 0%, #1FB855 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* ===== SOCIAL MEDIA PROFILE LINKS ===== */
.social-media-links {
    margin-top: 20px;
}

.social-profile-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.social-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 130px;
}

.social-profile-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.social-profile-btn:hover::before {
    width: 250px;
    height: 250px;
}

.social-profile-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.social-profile-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.social-profile-btn span {
    position: relative;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.social-profile-btn.facebook {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.9) 0%, rgba(22, 111, 229, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-profile-btn.facebook:hover {
    background: linear-gradient(135deg, rgba(24, 119, 242, 1) 0%, rgba(22, 111, 229, 1) 100%);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.social-profile-btn.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.social-profile-btn.instagram::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 50px;
}

.social-profile-btn.instagram:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
    filter: brightness(1.1);
}

/* ===== FLOATING SOCIAL SHARE BUTTON ===== */
.floating-social-share {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 1000;
    display: none;
}

.floating-social-share.visible {
    display: block;
}

.floating-share-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.floating-share-toggle:hover {
    background: var(--accent-gold-light);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.floating-share-toggle svg {
    width: 24px;
    height: 24px;
}

.floating-share-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.floating-social-share.active .floating-share-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-share-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-share-item:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.floating-share-item.facebook {
    background: #1877F2;
}

.floating-share-item.twitter {
    background: #1DA1F2;
}

.floating-share-item.linkedin {
    background: #0077B5;
}

.floating-share-item.whatsapp {
    background: #25D366;
}

.floating-share-item svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .floating-social-share {
        right: 15px;
        bottom: 90px;
    }
    
    .floating-share-toggle {
        width: 50px;
        height: 50px;
    }
    
    .floating-share-item {
        width: 44px;
        height: 44px;
    }
}

/* ===== LOADING STATE ===== */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

