/* ========================================
   Necro Garden - Styles
   Design Gótico Dark e Underground
   ======================================== */

:root {
    --primary-color: #0a0a0a;
    --secondary-color: #1a1a1a;
    --accent-color: #8b0000;
    --blood-red: #c10000;
    --bone-white: #f5f5dc;
    --text-color: #e0e0e0;
    --light-bg: #121212;
    --white: #ffffff;
    --shadow: 0 15px 40px rgba(139, 0, 0, 0.3);
    --shadow-hover: 0 20px 50px rgba(139, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Cinzel', serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--primary-color);
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ============ Header ============ */
.main-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2rem 0;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.logo h1 {
    font-family: 'Special Elite', cursive;
    font-size: 2.8rem;
    color: var(--blood-red);
    margin-bottom: 0.3rem;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(193, 0, 0, 0.8), 0 0 40px rgba(139, 0, 0, 0.5);
}

.tagline {
    font-size: 1rem;
    color: var(--bone-white);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-menu a {
    color: var(--bone-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blood-red);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--blood-red);
}

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

.nav-menu a:hover {
    color: var(--blood-red);
    text-shadow: 0 0 15px rgba(193, 0, 0, 0.8);
}

/* ============ Hero Section ============ */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(139,0,0,0.3) 100%),
                url('https://images.unsplash.com/photo-1518892096458-a169843d7f7f?w=1920') center/cover;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10,10,10,0.8) 100%);
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Special Elite', cursive;
    font-size: 5rem;
    color: var(--blood-red);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(193, 0, 0, 1),
                 0 0 60px rgba(139, 0, 0, 0.8),
                 0 5px 15px rgba(0, 0, 0, 0.9);
    animation: flicker 3s infinite alternate;
}

@keyframes flicker {
    0%, 100% { opacity: 1; text-shadow: 0 0 30px rgba(193, 0, 0, 1), 0 0 60px rgba(139, 0, 0, 0.8); }
    50% { opacity: 0.8; text-shadow: 0 0 20px rgba(193, 0, 0, 0.8), 0 0 40px rgba(139, 0, 0, 0.6); }
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--bone-white);
    margin-bottom: 3rem;
    line-height: 1.8;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.cta-button {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--blood-red) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 2px solid var(--blood-red);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(193, 0, 0, 0.8), 0 0 30px rgba(193, 0, 0, 0.6);
    background: linear-gradient(135deg, var(--blood-red) 0%, var(--accent-color) 100%);
}

/* ============ Main Sections ============ */
main section {
    padding: 6rem 0;
    position: relative;
}

.about-section {
    background: var(--secondary-color);
}

.about-section h2 {
    font-family: 'Special Elite', cursive;
    font-size: 3.5rem;
    color: var(--blood-red);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
}

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

.about-text h3 {
    font-size: 2rem;
    color: var(--blood-red);
    margin: 2.5rem 0 1.5rem 0;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: var(--text-color);
}

.about-text ul {
    list-style: none;
    margin-left: 2rem;
}

.about-text li {
    padding: 1rem 0;
    border-left: 3px solid var(--blood-red);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.about-text li:hover {
    border-left-width: 6px;
    padding-left: 2rem;
    box-shadow: -5px 0 15px rgba(139, 0, 0, 0.3);
}

.about-gallery .gallery-item {
    margin-bottom: 2rem;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-gallery .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.about-gallery img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(30%) contrast(110%);
    transition: var(--transition);
}

.about-gallery .gallery-item:hover img {
    filter: grayscale(0%) contrast(120%);
}

/* ============ Services Section ============ */
.services-section {
    background: var(--primary-color);
}

.services-section h2 {
    font-family: 'Special Elite', cursive;
    font-size: 3.5rem;
    color: var(--blood-red);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
}

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

.service-card {
    background: var(--secondary-color);
    padding: 3rem;
    text-align: center;
    border: 2px solid var(--accent-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(193,0,0,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
    animation: pulse 2s infinite;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blood-red);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--blood-red);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============ Gallery Section ============ */
.gallery-section {
    background: var(--secondary-color);
}

.gallery-section h2 {
    font-family: 'Special Elite', cursive;
    font-size: 3.5rem;
    color: var(--blood-red);
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
}

.gallery-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item-large {
    grid-column: span 2;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

.gallery-item img, .gallery-item-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(50%) contrast(110%);
}

.gallery-item:hover img, .gallery-item-large:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(120%);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.95), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.gallery-overlay h4 {
    color: var(--blood-red);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: var(--bone-white);
}

/* ============ Philosophy Section ============ */
.philosophy-section {
    background: var(--primary-color);
}

.philosophy-section h2 {
    font-family: 'Special Elite', cursive;
    font-size: 3.5rem;
    color: var(--blood-red);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
}

blockquote {
    font-family: 'Special Elite', cursive;
    font-size: 2rem;
    color: var(--bone-white);
    text-align: center;
    padding: 3rem;
    border-left: 5px solid var(--blood-red);
    border-right: 5px solid var(--blood-red);
    margin: 2rem auto;
    max-width: 900px;
    font-style: italic;
    background: var(--secondary-color);
    box-shadow: var(--shadow);
}

.philosophy-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-color);
    max-width: 1000px;
    margin: 2rem auto;
    text-align: center;
}

/* ============ Contact Section ============ */
.contact-section {
    background: var(--secondary-color);
}

.contact-section h2 {
    font-family: 'Special Elite', cursive;
    font-size: 3.5rem;
    color: var(--blood-red);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--blood-red);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-details p {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139,0,0,0.3);
    color: var(--text-color);
}

.social-links {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--bone-white);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.5);
}

.contact-form {
    background: var(--primary-color);
    padding: 3rem;
    border: 2px solid var(--accent-color);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--blood-red);
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    border: 2px solid var(--accent-color);
    color: var(--text-color);
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blood-red);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--accent-color), var(--blood-red));
    color: var(--white);
    border: 2px solid var(--blood-red);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(193, 0, 0, 0.6);
}

/* ============ Authority Links ============ */
.authority-links {
    background: var(--primary-color);
    padding: 4rem 0;
}

.authority-links h3 {
    color: var(--blood-red);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.authority-link {
    display: block;
    padding: 1.5rem;
    background: var(--secondary-color);
    color: var(--bone-white);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    text-align: center;
    transition: var(--transition);
}

.authority-link:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* ============ Footer ============ */
.main-footer {
    background: var(--primary-color);
    padding: 4rem 0 2rem 0;
    border-top: 3px solid var(--blood-red);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    font-family: 'Special Elite', cursive;
    font-size: 2rem;
    color: var(--blood-red);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.6);
}

.footer-links, .footer-authority {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a, .footer-authority a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover, .footer-authority a:hover {
    color: var(--blood-red);
    padding-left: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 0, 0, 0.3);
    color: var(--text-color);
}

/* ============ WhatsApp Button ============ */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-button:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* ============ Responsive ============ */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-large {
        grid-column: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
    }
}
