/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Navigation */
.navbar {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.nav-link:hover {
    color: #0066cc;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0066cc;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.navbar.scrolled .nav-link {
    color: #333;
    font-weight: 600;
    text-shadow: none;
}

.navbar.scrolled .nav-link:hover {
    color: #0066cc;
}

.cta-button {
    background-color: #0066cc;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #0052a3;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .cta-button {
    text-shadow: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.navbar.scrolled .hamburger span {
    background-color: #333;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(235, 240, 245, 0.3), rgba(235, 240, 245, 0.3)), url('./img/fondo.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    position: relative;
    min-height: 600px;
}

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

.logo {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeIn 2s ease-in;
    margin-top: -30px;
    transform: scale(0.9);
}

.logo img {
    width: 100%;
    height: auto;
}

.logo-tagline {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.text-content {
    text-align: left;
    max-width: 500px;
    margin-left: 100px;
    position: relative;
    margin-top: -50px;
}

h1 {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: left;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-top: -20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    color: #ffffff;
}

.btn-dark {
    background-color: rgba(51, 51, 51, 0.7);
    color: white;
}

.btn-dark:hover {
    background-color: rgba(34, 34, 34, 0.9);
}

.btn-primary {
    background-color: rgba(0, 102, 204, 0.7);
    color: white;
}

.btn-primary:hover {
    background-color: rgba(0, 82, 163, 0.9);
}

.hero-image {
    position: absolute;
    top: 85%;
    right: 0;
    transform: translateY(-50%);
    max-width: 40%;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero-content {
        min-height: auto;
    }
    
    .logo-tagline {
        flex-direction: column;
        margin-top: 30px;
    }
    
    .text-content {
        margin-left: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-image {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        max-width: 60%;
        margin-top: 30px;
    }
    
    h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav-items {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 80px 20px 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-items.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .nav-link {
        color: #333;
        font-size: 18px;
        padding: 15px 0;
        text-align: center;
        text-shadow: none;
    }
    
    .nav-link:hover {
        color: #0066cc;
    }
    
    .cta-button {
        margin-top: 20px;
        text-align: center;
    }
    
    h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 28px;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-image {
        max-width: 80%;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #ebf0f5;
}

.services h2 {
    text-align: center;
    font-size: 42px;
    color: #333;
    margin-bottom: 60px;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
}

.service-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1).animate {
    animation-delay: 0.2s;
}

.service-card:nth-child(2).animate {
    animation-delay: 0.4s;
}

.service-card:nth-child(3).animate {
    animation-delay: 0.6s;
}

.service-card:nth-child(4).animate {
    animation-delay: 0.8s;
}

.service-card:nth-child(5).animate {
    animation-delay: 1s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 35px;
    color: #0066cc;
}

.service-card:hover .service-icon {
    background-color: #0066cc;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

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

/* Responsive adjustments for services */
@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .services h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

/* Fleet Section */
.fleet {
    padding: 100px 0;
    background-color: #ebf0f5;
}

.fleet h2 {
    text-align: center;
    font-size: 42px;
    color: #333;
    margin-bottom: 60px;
}

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

.fleet-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.fleet-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.fleet-info {
    padding: 25px;
}

.fleet-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.fleet-specs {
    list-style: none;
    padding: 0;
}

.fleet-specs li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #666;
}

.fleet-specs i {
    color: #0066cc;
    margin-right: 10px;
    width: 20px;
}

/* Responsive adjustments for fleet */
@media (max-width: 768px) {
    .fleet {
        padding: 60px 0;
    }

    .fleet h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 30px;
}

.about-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.about-image:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments for about section */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }

    .about h2 {
        font-size: 32px;
    }

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

    .stat-item {
        padding: 15px;
    }
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.partners h2 {
    text-align: center;
    font-size: 42px;
    color: #333;
    margin-bottom: 60px;
}

.partners-grid {
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: flex-start;
    animation: scrollPartners 20s linear infinite;
    width: max-content;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    width: 300px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Estilos específicos para cada logo */
.partner-pallex {
    width: 300px; /* Ajusta este valor según necesites */
    height: 150px; /* Ajusta este valor según necesites */
}

.partner-redpalet {
    width: 300px; /* Ajusta este valor según necesites */
    height: 150px; /* Ajusta este valor según necesites */
}

.partner-lolotyd {
    width: 180px; /* Ajusta este valor según necesites */
    height: 80px; /* Ajusta este valor según necesites */
}

.partner-logisticacom {
    width: 300px; /* Ajusta este valor según necesites */
    height: 150px; /* Ajusta este valor según necesites */
}

.partner-logo:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive adjustments for partners */
@media (max-width: 992px) {
    .partner-logo {
        width: 250px;
        height: 125px;
    }
    
    .partner-pallex,
    .partner-redpalet,
    .partner-lolotyd,
    .partner-logisticacom {
        width: 250px;
        height: 125px;
    }
}

@media (max-width: 576px) {
    .partner-logo {
        width: 200px;
        height: 100px;
    }
    
    .partner-pallex,
    .partner-redpalet,
    .partner-lolotyd,
    .partner-logisticacom {
        width: 200px;
        height: 100px;
    }
}

/* Coverage Section */
.coverage {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.coverage h2 {
    text-align: center;
    font-size: 42px;
    color: #333;
    margin-bottom: 60px;
}

.coverage-content {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.coverage-card {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 800px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.coverage-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 40px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.3) 100%
    );
}

.service-highlight {
    background: rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-highlight:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.7);
}

.service-highlight h3 {
    color: #0066cc;
    font-size: 24px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.service-highlight p {
    color: #000;
    margin-bottom: 15px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.service-features i {
    color: #0066cc;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    margin-top: auto;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

.legend-item i {
    font-size: 12px;
}

.legend-item:first-child i {
    color: #0066cc;
}

.legend-item:last-child i {
    color: #28a745;
}

/* Responsive adjustments for coverage */
@media (max-width: 992px) {
    .coverage-card {
        height: 700px;
    }
    
    .coverage-overlay {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .coverage-card {
        height: auto;
        min-height: 800px;
    }
    
    .coverage-overlay {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-highlight {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .coverage-card {
        border-radius: 15px;
    }
    
    .coverage-overlay {
        padding: 20px;
    }
    
    .service-highlight h3 {
        font-size: 20px;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact h2 {
    text-align: center;
    font-size: 42px;
    color: #333;
    margin-bottom: 60px;
}

.contact-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

.info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 30px;
    color: #0066cc;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

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

.contact-form {
    flex: 2;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-container input {
    width: auto;
    margin-right: 10px;
}

.submit-btn {
    background-color: #0066cc;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #0052a3;
}

/* Responsive adjustments for contact */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .info-card {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .info-card {
        min-width: 100%;
    }
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.footer-section h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

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

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

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

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

.footer-section ul li i {
    margin-right: 10px;
    color: #0066cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #0066cc;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #0066cc;
    color: white;
}

.btn-accept:hover {
    background-color: #0052a3;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments for footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Modal de Cotización */
.cotiza-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.cotiza-modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 150px;
}

.contact-option i {
    font-size: 40px;
    margin-bottom: 10px;
}

.contact-option span {
    font-size: 18px;
    font-weight: 500;
}

.email-option {
    background-color: #f8f9fa;
}

.email-option:hover {
    background-color: #e9ecef;
    transform: translateY(-5px);
}

.whatsapp-option {
    background-color: #f8f9fa;
}

.whatsapp-option:hover {
    background-color: #e9ecef;
    transform: translateY(-5px);
}

.whatsapp-option i {
    color: #25D366;
}

.email-option i {
    color: #0066cc;
}

@media (max-width: 576px) {
    .contact-options {
        flex-direction: column;
        gap: 20px;
    }

    .contact-option {
        width: 100%;
    }

    .modal-content {
        padding: 30px 20px;
    }
}

/* Estilos para la página de Política de Privacidad */
.privacy-policy {
    max-width: 800px;
    margin: 6rem auto 2rem;
    padding: 0 1rem;
}

.privacy-policy h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.privacy-policy section {
    margin-bottom: 2rem;
}

.privacy-policy h2 {
    color: #444;
    margin-bottom: 1rem;
}

.privacy-policy p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-policy ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-policy li {
    margin-bottom: 0.5rem;
}

.back-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    margin: 1rem;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #e0e0e0;
}

footer {
    text-align: center;
    padding: 1rem;
    color: #666;
    font-size: 0.9rem;
}