        #contacto {
            padding: 60px 20px;
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
        }

        .contact-form {
            max-width: 700px;
            width: 100%;
            margin: 0 auto;
            padding: 40px;
            background-color: #ffffff;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        .contact-info {
            text-align: center;
            margin-bottom: 35px;
        }

        .contact-info h2 {
            font-size: 32px;
            margin-bottom: 10px;
            color: #2d3748;
            font-weight: 700;
        }

        .contact-info p {
            font-size: 16px;
            color: #718096;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .form-field {
            margin-bottom: 20px;
        }

        input, select, textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 15px;
            font-family: inherit;
            transition: all 0.3s ease;
            background-color: #f7fafc;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #4a5568;
            background-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(74, 85, 104, 0.1);
        }

        input::placeholder, textarea::placeholder {
            color: #a0aec0;
        }

        select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            cursor: pointer;
            padding-right: 40px;
        }

        select option:first-child {
            color: #a0aec0;
        }

        textarea {
            height: 140px;
            resize: vertical;
            min-height: 100px;
        }

        .checkboxes {
            margin: 20px 0 25px 0;
        }

        .checkboxes label {
            display: flex;
            align-items: flex-start;
            font-size: 14px;
            color: #4a5568;
            cursor: pointer;
            line-height: 1.5;
            user-select: none;
        }

        .checkboxes input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-right: 12px;
            margin-top: 3px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .checkboxes label span {
            display: inline;
        }

        .checkboxes a {
            color: #4a5568;
            text-decoration: underline;
            cursor: pointer;
        }

        .checkboxes a:hover {
            color: #2d3748;
        }

        button[type="submit"] {
            display: block;
            width: 100%;
            background: #4a5568;
            color: #ffffff;
            border: none;
            padding: 16px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 85, 104, 0.3);
        }

        button[type="submit"]:hover {
            background: #2d3748;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 85, 104, 0.4);
        }

        button[type="submit"]:active {
            transform: translateY(0);
        }

        button[type="submit"]:disabled {
            background: #cbd5e0;
            cursor: not-allowed;
            box-shadow: none;
        }

        input:invalid:not(:placeholder-shown),
        select:invalid:not(:placeholder-shown),
        textarea:invalid:not(:placeholder-shown) {
            border-color: #ffffff;
        }

        .success-message {
            display: none;
            padding: 15px;
            background-color: #c6f6d5;
            border: 2px solid #48bb78;
            border-radius: 10px;
            color: #22543d;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .success-message.show {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 600px) {
            .contact-form {
                padding: 25px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-info h2 {
                font-size: 26px;
            }

            #contacto {
                padding: 40px 15px;
            }
        }

        .contacto-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .map-container {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            height: 100%;
            min-height: 600px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 600px;
            border: none;
        }

        .map-info {
            padding: 30px;
            background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
            color: white;
        }

        .map-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .map-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            gap: 12px;
        }

        .map-info-item svg {
            flex-shrink: 0;
            margin-top: 2px;
        }

        .map-info-item p {
            margin: 0;
            line-height: 1.6;
        }


        @media (max-width: 1024px) {
            .contacto-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .map-container {
                min-height: 400px;
            }

            .map-container iframe {
                min-height: 400px;
            }
        }