:root {
    --primary-color: #e91e63;
    --secondary-color: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --accent-color: #e91e63;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Navegación */
.navbar {
    background: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
    overflow: visible;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    gap: 40px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
    min-width: fit-content;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: none;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.logo-icon:hover {
    transform: scale(1.08);
}

.logo a {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 60px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 8px;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    border-bottom: 3px solid var(--primary-color);
    padding: 20px;
    gap: 20px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu.active li {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.nav-menu.active li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nav-menu.active a {
    font-size: 1rem;
    padding-bottom: 0;
}

.nav-menu.active a::after {
    display: none;
}

.nav-menu.active a:hover {
    color: var(--primary-color);
    padding-left: 10px;
    transition: all 0.2s ease;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    margin-left: 20px;
    position: relative;
    width: 30px;
    height: 24px;
}

.hamburger i {
    font-size: 1.5rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: absolute;
}

.hamburger:hover i {
    color: var(--primary-color);
}

.hamburger.active i {
    transform: rotate(90deg);
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 25px;
        gap: 30px;
        height: 110px;
    }
    
    .nav-menu {
        gap: 40px;
    }
    
    .logo a {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 900px) {
    .nav-container {
        padding: 0 20px;
        gap: 25px;
        height: 105px;
    }
    
    .nav-menu {
        gap: 35px;
    }
    
    .logo a {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        gap: 15px;
        height: 100px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo a {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .logo-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 0 12px;
        gap: 10px;
        height: 90px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .logo a {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .hamburger i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
        gap: 8px;
        height: 80px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .navbar {
        border-bottom-width: 2px;
    }
    
    .logo a {
        font-size: 0.9rem;
        letter-spacing: 0.2px;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .hamburger i {
        font-size: 1.2rem;
    }
}

@media (max-width: 400px) {
    .nav-container {
        padding: 0 8px;
        gap: 6px;
        height: 75px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .logo a {
        font-size: 0.85rem;
        letter-spacing: 0.1px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hamburger i {
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .nav-container {
        padding: 0 8px;
        gap: 5px;
        height: 70px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .logo a {
        font-size: 0.8rem;
    }
    
    .hamburger i {
        font-size: 1rem;
    }
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c2185b 100%);
    color: var(--text-light);
    padding: 100px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    min-height: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* Botones */
.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: transparent;
}

/* Sección Sobre Nosotros */
.about {
    padding: 80px 20px;
    background: var(--bg-light);
}

.about h2,
.services h2,
.projects h2,
.contact h2,
.map-section h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
}

.about h2::after,
.services h2::after,
.projects h2::after,
.contact h2::after,
.map-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

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

.features-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.features-list i {
    color: var(--primary-color);
    margin-right: 12px;
    font-weight: 700;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* Servicios */
.services {
    padding: 80px 20px;
    background: var(--secondary-color);
}

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

.service-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Proyectos */
.projects {
    padding: 80px 20px;
    background: var(--bg-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.project-category {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.project-info p {
    color: #666;
    line-height: 1.6;
}

/* Contacto */
.contact {
    padding: 80px 20px;
    background: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-item p {
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--bg-light);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Mapa */
.map-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section ul li {
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    color: #999;
    max-width: 1200px;
    margin: 0 auto;
}

/* Comunidad Digital */
.community {
    padding: 80px 20px;
    background: var(--bg-light);
}

.community-header {
    text-align: center;
    margin-bottom: 50px;
}

.community-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.community-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

.community-header p {
    font-size: 1.1rem;
    color: #666;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.instagram-post {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(233, 30, 99, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-overlay i {
    font-size: 3rem;
    color: white;
}

/* Testimonios */
.testimonials {
    padding: 80px 20px;
    background: var(--secondary-color);
}

.testimonials h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: var(--primary-color);
    margin: 0 3px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card h4 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsivo Comunidad e Testimonios */
@media (max-width: 1024px) {
    .instagram-feed {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .instagram-feed {
        grid-template-columns: 1fr;
    }

    .community-header h2,
    .testimonials h2 {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 30px 20px;
    }
}


    .hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        min-height: auto;
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--secondary-color);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--bg-light);
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .about h2,
    .services h2,
    .projects h2,
    .contact h2,
    .map-section h2 {
        font-size: 2rem;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
        height: 70px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-menu {
        top: 70px;
    }

    .hero {
        padding: 40px 15px;
    }

    .about,
    .services,
    .projects,
    .contact,
    .map-section {
        padding: 40px 15px;
    }

    .about h2,
    .services h2,
    .projects h2,
    .contact h2,
    .map-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .service-card,
    .project-card {
        border-radius: 8px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Breadcrumb */
.breadcrumb {
    background: var(--bg-light);
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    font-size: 0.95rem;
    color: #666;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: #c2185b;
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c2185b 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Página Completa - Estilos */
.about-page h1,
.services-page h1,
.projects-page h1,
.contact-page h1,
.testimonials-page h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.about-page,
.services-page,
.projects-page,
.contact-page,
.testimonials-page {
    padding: 80px 20px;
}

/* Stats Section */
.stats-section {
    margin-top: 80px;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c2185b 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Service Card Full */
.service-card-full {
    background: var(--secondary-color);
    border: 2px solid #f0f0f0;
    padding: 40px;
    border-radius: 10px;
    transition: var(--transition);
    text-align: left;
}

.service-card-full:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card-full i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card-full h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card-full p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.service-features li:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Projects Extended Grid */
.projects-extended {
    grid-template-columns: repeat(2, 1fr);
}

.project-details {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
}

.project-details span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-details i {
    color: var(--primary-color);
}

/* Testimonials Extended */
.testimonials-extended {
    grid-template-columns: repeat(2, 1fr);
}

.testimonials-page .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
}

.client-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-avatar {
    font-size: 3rem;
    color: var(--primary-color);
}

.client-info h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.client-info p {
    margin: 5px 0 0 0;
    color: #999;
    font-size: 0.9rem;
}

.testimonial-card {
    text-align: left;
}

/* Contact Page */
.contact-page .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-form-large {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-large .form-group {
    display: flex;
    flex-direction: column;
}

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

.contact-form-large input,
.contact-form-large textarea,
.contact-form-large select {
    padding: 12px;
    border: 2px solid #f0f0f0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form-large input:focus,
.contact-form-large textarea:focus,
.contact-form-large select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.social-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.social-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-links-large a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
}

.social-links-large a:hover {
    background: var(--primary-color);
    color: white;
}

.social-links-large i {
    font-size: 1.5rem;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
}

/* Responsivo para Páginas */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-extended {
        grid-template-columns: 1fr;
    }

    .testimonials-extended {
        grid-template-columns: 1fr;
    }

    .testimonials-page .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-page h1,
    .services-page h1,
    .projects-page h1,
    .contact-page h1,
    .testimonials-page h1 {
        font-size: 2rem;
    }

    .contact-page .contact-content {
        grid-template-columns: 1fr;
    }

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

    .stats-section h2 {
        font-size: 2rem;
    }

    .service-card-full {
        padding: 30px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-page h1,
    .services-page h1,
    .projects-page h1,
    .contact-page h1,
    .testimonials-page h1 {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-card-full {
        padding: 20px;
    }

    .client-header {
        flex-direction: column;
        text-align: center;
    }

    .client-info h4,
    .client-info p {
        text-align: center;
    }

    .testimonial-card {
        text-align: center;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }

    .intro-text {
        font-size: 1rem;
    }

    .cta-section {
        padding: 40px 15px;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}

/* Project Detail Page */
.project-detail {
    padding: 60px 20px;
    background: var(--secondary-color);
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.project-detail-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-detail-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-delivery {
    background: #4CAF50;
    color: white;
}

.badge-category {
    background: var(--primary-color);
    color: white;
}

.badge-success {
    background: #4CAF50;
    color: white;
}

.badge-light {
    background: #f0f0f0;
    color: #666;
    border: 1px solid #e0e0e0;
}

.badge-primary {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.badge-secondary {
    background: #f0f0f0;
    color: #666;
    border: 1px solid #ddd;
}

.project-detail-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 10px 0;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 1.1rem;
}

.project-location i {
    color: var(--primary-color);
}

.project-branding {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.project-branding img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
}

.logo-placeholder {
    text-align: center;
}

.logo-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.logo-placeholder p {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

.special-offer-box {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.special-offer {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.offer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.special-offer h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.offer-amount {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.offer-note {
    font-size: 0.85rem;
    opacity: 0.9;
}

.price-section {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.price-section h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price-range {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.price-divider {
    height: 2px;
    background: #ddd;
}

.price-range-items {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
}

.price-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-text {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

.price-item label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 0.85rem;
    color: #999;
}

.obra-gris {
    color: #d32f2f;
    font-weight: 600;
}

.certifications {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

.cert-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.cert-item p {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.project-actions {
    display: flex;
    gap: 15px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-action {
    flex: 1;
    padding: 15px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-action-secondary {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    color: var(--text-dark);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.btn-action-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-action:hover {
    background: var(--primary-color);
    color: white;
}

/* Project Detail Right */
.main-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
    margin-bottom: 20px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
}

.overlay-btn {
    flex: 1;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.overlay-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    height: 120px;
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Project Tabs */
.project-tabs {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    padding: 20px 25px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: var(--transition);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    position: relative;
    bottom: -2px;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
    padding: 40px;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.tab-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tab-content h3 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tab-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.plano-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.plano-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plano-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.plano-item h4 {
    padding: 15px;
    background: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.amenity-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.amenity-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.amenity-item h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.amenity-item p {
    font-size: 0.95rem;
    color: #666;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.spec-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #c2185b);
    transition: height 0.3s ease;
}

.spec-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.15);
    transform: translateY(-5px);
}

.spec-card:hover::before {
    height: 6px;
}

.spec-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08), rgba(233, 30, 99, 0.05));
    border-radius: 8px;
    transition: all 0.3s ease;
}

.spec-card:hover .spec-icon {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), rgba(233, 30, 99, 0.1));
    transform: scale(1.1);
}

.spec-card h4 {
    color: var(--text-dark);
    margin: 15px 0 12px 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.spec-card p {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
}

.location-info {
    margin-top: 30px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 8px;
}

.location-info h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.location-info p {
    color: #666;
    line-height: 1.8;
}

.project-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c2185b 100%);
    color: white;
    border-radius: 10px;
}

.project-cta h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 15px;
}

.project-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Quick Contact Section */
.quick-contact {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.quick-contact h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.quick-contact .btn {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .project-detail-grid {
        grid-template-columns: 1fr;
    }

    .planos-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .image-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .project-detail {
        padding: 40px 15px;
    }

    .project-detail-header h1 {
        font-size: 1.8rem;
    }

    .price-range {
        grid-template-columns: 1fr;
    }

    .project-actions {
        flex-direction: column;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .spec-card {
        padding: 25px 15px;
    }

    .spec-icon {
        font-size: 2.2rem;
        height: 60px;
    }

    .certifications {
        grid-template-columns: 1fr;
    }

    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .tabs-nav {
        overflow-x: auto;
    }

    .tab-btn {
        padding: 15px;
        font-size: 0.9rem;
    }

    .tab-content {
        padding: 25px;
    }

    .project-cta {
        padding: 40px 20px;
    }

    .project-cta h2 {
        font-size: 1.6rem;
    }
}

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}

/* WhatsApp Button - Removido */